I know that I can skip lines at the beginning of a FILE before parsing the remainder of the FILE with:
The fileset.txt FILE contains a list of filenames, created earlier with a DO- or FOR-loop.
Instead of using a FILE, can skipping files be done directly within a FILESET?
or
Code:
FOR /F "skip=1000" %i IN (fileset.txt) ...
Instead of using a FILE, can skipping files be done directly within a FILESET?
Code:
DO i IN /S *.* ...
Code:
FOR /R %i IN (*.*) ...