filesize - Trying to identify and move pdf files listed in txt file from source'a' to dest'b' from batch script? -


i want move few 100 pdf files directory source containing 1000s pdf. have text file has pdf file names listed in separate lines. program has read file name text file , find in source folder, if file size 12 kb , older 2014, move destination 'b'. im working on windows 2008 r2.

another option:

batch file extract file names input file:

for /f %%i in (inputfile.txt) call bat2.bat %%i

batch file file size:

for %%i in (%1.txt) echo %%~zi

...and continue here


Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -