Search found 3 matches

by Ralf
18 Sep 2009 08:44
Forum: DOS Batch Forum
Topic: getting Date modified into a string
Replies: 3
Views: 6278

Not sure I understand -- but is this what you want? *UNTESTED* FOR %%? IN (C:\Biblio_sql\Biblio_sql\*) DO ( ECHO File Name Only : %%~n? ECHO File Extension : %%~x? ECHO Name in 8.3 notation : %%~sn? ECHO File Attributes : %%~a? ECHO Located on Drive : %%~d? ECHO File Size : %%~z? ECHO L...
by Ralf
18 Sep 2009 00:03
Forum: DOS Batch Forum
Topic: getting Date modified into a string
Replies: 3
Views: 6278

Not sure I understand -- but is this what you want? *UNTESTED* FOR %%? IN (C:\Biblio_sql\Biblio_sql\*) DO ( ECHO File Name Only : %%~n? ECHO File Extension : %%~x? ECHO Name in 8.3 notation : %%~sn? ECHO File Attributes : %%~a? ECHO Located on Drive : %%~d? ECHO File Size : %%~z? ECHO L...
by Ralf
17 Sep 2009 00:41
Forum: DOS Batch Forum
Topic: getting Date modified into a string
Replies: 3
Views: 6278

getting Date modified into a string

Hey, i'm trying to copy txt-files as backup into a zip-file. So far, so good... The problem is that this bat-file is activated by several persons trough the all day, because its possible that some person changes the original txt-file. To keep a log in my backup-zip of all versions i was thinking to ...