Search found 7 matches
- 22 Oct 2013 10:54
- Forum: DOS Batch Forum
- Topic: Copy files from one folder to another except today's file.
- Replies: 10
- Views: 3244
Re: Copy files from one folder to another except today's fil
Server OS : Windows 2000
- 22 Oct 2013 10:51
- Forum: DOS Batch Forum
- Topic: Copy files from one folder to another except today's file.
- Replies: 10
- Views: 3244
Re: Copy files from one folder to another except today's fil
I have Log archive folder in my SERVER , My *. Log files (Except today's log file) needs to be copied to log archive folder. Source Folder : C:\HOST Destination : C:\Host\Logarchive Sample file Filename : 20131022.LOG Your code is moving all the files to archive folder including today's file. This c...
- 22 Oct 2013 07:12
- Forum: DOS Batch Forum
- Topic: Copy files from one folder to another except today's file.
- Replies: 10
- Views: 3244
Re: Copy files from one folder to another except today's fil
This code is not working in Windows 2000 Server .
Can you please help me ?
Can you please help me ?
- 15 Oct 2013 08:17
- Forum: DOS Batch Forum
- Topic: Copy files from one folder to another except today's file.
- Replies: 10
- Views: 3244
Re: Copy files from one folder to another except today's fil
This is the code which currently i have IF EXIST D:\EXEDLL\MOVELOGS.R4.LOG COPY D:\EXEDLL\MOVELOGS.R4.LOG D:\EXEDLL\MOVELOGS.R5.LOG IF EXIST D:\EXEDLL\MOVELOGS.R3.LOG COPY D:\EXEDLL\MOVELOGS.R3.LOG D:\EXEDLL\MOVELOGS.R4.LOG IF EXIST D:\EXEDLL\MOVELOGS.R2.LOG COPY D:\EXEDLL\MOVELOGS.R2.LOG D:\EXEDLL\...
- 15 Oct 2013 08:04
- Forum: DOS Batch Forum
- Topic: Copy files from one folder to another except today's file.
- Replies: 10
- Views: 3244
Re: Copy files from one folder to another except today's fil
Will it consider the Created date of the file or filename which contains the today's date.. i tested this code its deleting based on the Created date ?
- 15 Oct 2013 07:53
- Forum: DOS Batch Forum
- Topic: Copy files from one folder to another except today's file.
- Replies: 10
- Views: 3244
Re: Copy files from one folder to another except today's fil
Hi Foxi,
Sorry for the late reply. Gone for an vacation.
Thanks for your code. Its working as expected by the way what is the logic that you have built was bit confused. Can you explain me if you have time ?
With thankful,
Senthil E
Sorry for the late reply. Gone for an vacation.
Thanks for your code. Its working as expected by the way what is the logic that you have built was bit confused. Can you explain me if you have time ?
With thankful,
Senthil E
- 11 Oct 2013 08:57
- Forum: DOS Batch Forum
- Topic: Copy files from one folder to another except today's file.
- Replies: 10
- Views: 3244
Copy files from one folder to another except today's file.
Hi , I have a folder with consist of log files. I need to copy all the files to logarchive folder except today's log file . I need to delete all the files except today's log file , the filename will be in YYYYDDMM format Ex. 20131011.log These are the two folders i have C:\SystemLogs C:\Systemlogs\L...