Search found 4 matches

by Daans180
02 Dec 2014 02:10
Forum: DOS Batch Forum
Topic: Add date to script?
Replies: 9
Views: 7356

Re: Add date to script?

Thanks for the reply this works for me,

Great forum for starters at least,

will be back.
Daniel 8)
by Daans180
26 Nov 2014 02:23
Forum: DOS Batch Forum
Topic: Add date to script?
Replies: 9
Views: 7356

Re: Add date to script?

And a small next question, What shoul you adjust in the script if you like to move file between a particular date: let say files in a particular week or day, @echo off set "dir=V:\Administratie\CS\Pakbon_Summaries" set age=299 pushd "%dir%" set movedFiles=0 for /f "tokens=*&...
by Daans180
25 Nov 2014 06:23
Forum: DOS Batch Forum
Topic: Add date to script?
Replies: 9
Views: 7356

Re: Add date to script?

thanks all
this is working for me now
the last script worked fine

Thanks again
Daniel
by Daans180
20 Nov 2014 06:00
Forum: DOS Batch Forum
Topic: Add date to script?
Replies: 9
Views: 7356

Add date to script?

Hello i have a move script but i like to add a date function so i can, lets see move all files older then >..... this is what i have allready. who can help me. kind regards, echo off SETLOCAL EnableDelayedExpansion set movedFiles=0 for /R V:\Administratie\CS\Pakbon_Summaries\ %%G in (*) do ( echo mo...