Search found 2 matches
- 14 May 2017 09:57
- Forum: DOS Batch Forum
- Topic: file last modified date
- Replies: 2
- Views: 1968
Re: file last modified date
Thank you very much aGerman for your help.
- 13 May 2017 16:11
- Forum: DOS Batch Forum
- Topic: file last modified date
- Replies: 2
- Views: 1968
file last modified date
Hi, I want to get the last modified date and time of my *.txt files with the first script below. I can get the last modified date but not the last modified time. for %%f in (C:\test\*.txt) do call :process %%f %%~tf goto :eof :process set filepath=%1 set filedate=%2 echo %filedate% rem It will retur...