- Dec
- 55
- 3
So I have this batch file that runs once a day and just copies everything from drive F: to drive H: like this:
copy /su F:\*.* H:\
I've always understood the u parameter to mean only copy those files that have been 'updated' and it uses the file's time/date to determine if a file is 'newer'. Right?
Lately, I've been noticing that when the batch file runs, it is copying a lot of files that I know haven't been modified and haven't even been accessed in a long time. At first I thought maybe it's a bug in TCC (I always install the latest version as soon as you release them). But then I noticed that almost all of the files being unnecessarily copied are .zip files.
My anti-virus program has a setting "scan archived files" so I disabled that and I'll see what happens. Is it possible that the AV program is doing something when it scans .zip files that causes TCC to think that the file has been changed?
copy /su F:\*.* H:\
I've always understood the u parameter to mean only copy those files that have been 'updated' and it uses the file's time/date to determine if a file is 'newer'. Right?
Lately, I've been noticing that when the batch file runs, it is copying a lot of files that I know haven't been modified and haven't even been accessed in a long time. At first I thought maybe it's a bug in TCC (I always install the latest version as soon as you release them). But then I noticed that almost all of the files being unnecessarily copied are .zip files.
My anti-virus program has a setting "scan archived files" so I disabled that and I'll see what happens. Is it possible that the AV program is doing something when it scans .zip files that causes TCC to think that the file has been changed?