2526
It does not (yet) handle weird filenames like these
SubFolder-02A - AnotherFileName-01061996.jpg
SubFolder-02A - SomeFileName-01-16112012 234654.jpg
SubSomeFolder-02B - SubFolder-02B - AnotherFileName-01061996.jpg-dcwul62 (February 15, 2014, 01:06 AM)

## AT THIS POINT I WOULD LIKE TO ADD 15 SPACES BEFORE CONTENTS OF THE LINE.
LINES WITHOUT A "\" AT THIS POINT ARE THE NAME OF THE OWNER OF THE FOLLOWING LINES )-questorfla (February 14, 2014, 02:37 PM)
Code: Text [Select]
@echo off rem URL with less than 5 forward slashes set URL=http://not/longenuff/test.txt call :TestLen %URL% rem URL with more than 5 forward slashes set URL=http://www/need/to/make/it/longer/test.txt call :TestLen %URL% goto :End :TestLen for /f "usebackq delims=/ tokens=5" %%a in (`echo.%1`) do (call :LongEnuff %%a %1) goto :EOF :LongEnuff if /i not %1 == "" echo.%2 goto :EOF :End pause
ie. Use / as a delimiter and test to see whether the fifth argument is empty or not. Seems to work.-4wd (December 11, 2013, 12:56 AM)
... but find-replace are limited to filenames only.-dcwul62 (February 14, 2014, 12:32 AM)
I have not found any tools that can modify folderdates based on dates in the foldernames.
1st regex: Create Filenamed Folder to MOVE to... (Date+Time)
Rename REGEXP PATTERN "(.+)(-|\s)(\d{6}|\d{8}|\d{2}-\d{2}-\d{4})(-|\s)(\d{6})\.(.+)" TO \1\\\0
Select ALLDIRS
"F:\Directory Opus\SetFolDateFM.exe" /r {ss} {allfile}
2nd regex: Create Filenamed Folder to MOVE to... (##-Date+Time)
Rename REGEXP PATTERN "(.+)(-|\s)(\d{2}|\d{3})(-|\s)(\d{6}|\d{8}|\d{2}-\d{2}-\d{4})(-|\s)(\d{6})\.(.+)" TO \1\\\0
Select ALLDIRS
"F:\Directory Opus\SetFolDateFM.exe" /r {ss} {allfile}
3rd regex: Create Filenamed Folder to MOVE to... (Date Only)
Rename REGEXP PATTERN "(.+)(-|\s)(\d{6}|\d{8}|\d{2}-\d{2}-\d{4})\.(.+)" TO \1\\\0
Select ALLDIRS
"F:\Directory Opus\SetFolDateFM.exe" /r {ss} {allfile}
4th regex: Create Filenamed Folder to MOVE to... (##-Date Only)
Rename REGEXP PATTERN "(.+)(-|\s)(\d{2}|\d{3})(-|\s)(\d{6}|\d{8}|\d{2}-\d{2}-\d{4})\.(.+)" TO \1\\\0
Select ALLDIRS
"F:\Directory Opus\SetFolDateFM.exe" /r {ss} {allfile}
Pale Moon - Intel Atomâ„¢ builds
This version of Pale Moon is optimized specifically for use on Intel Atomâ„¢ processors.
Many low-powered netbooks and laptops are equipped with this processor, and using a build of Pale Moon specifically optimized for this processor will reduce power consumption and increase speed of the browser for these systems.
Please note the following:
- These builds are specifically optimized for Intel Atomâ„¢ processors, and are not recommended for regular Intel or AMD processors. The extra optimizations only work on Atom processors and will execute significantly slower than the normal version of Pale Moon on a non-Atom processor.
- These builds are otherwise exactly the same as the normal desktop version of Pale Moon, built from the same source code. No other changes are made to the browser.
pasted your v11 code in it.-dcwul62 (February 13, 2014, 08:37 AM)
Sorry - I can't get it working.
Feel sad to say that....-dcwul62 (February 12, 2014, 08:57 AM)

If the script is for a button, in Opus v10.x I need to add:

FolderNameXYZ 10-02-2014 with folder modified date 01-12-2013
then folder modified date to be updated to 10-02-2014-dcwul62 (February 11, 2014, 05:46 AM)

One way or the other it has some effect ...-dcwul62 (February 08, 2014, 03:04 AM)
"F:\Directory Opus\SetFolDateFM.exe" /r {ss} {allfile} /p {sourcepath}-dcwul62 (February 08, 2014, 12:40 AM)