|
Answer» hello.
Can anyone write me a .BAT file that will move files (all picture formats and all video formats) from F: to F:EXAMPLE folder? (i'm writing the drive and folder name so the syntax can be WRITTEN correctly.) and if the filename already exists, then rename, NOT overwrite.
Also, a 2nd BATCH file that will display all files in the F:EXAMPLE folder according to the date when they were downloaded. (for some reason, windows can't seem to do this)
I'd REALLY appreciate the help.
thanks. ~adamHave you started creating these batch files ? ? Or not...The way the question is posed "F:\EXAMPLE" etc sure makes me think this is homework. date of creation or downloaded are the same, no? so:
DIR /tc /w /b "f:\example" pause
|