|
Answer» Hi,
I like to know the list of files created on particular date e.g. i like to know number of files created particular directory daily??
i am trying like the following batch commands
cd
DIR /o:-d >> test\file_list.txt (capturing in the text file )
find /c "10/22/2007" test\file_list.txt >> (SEARCHING the date now here i need how to print the SYSTEM date daily )
or any other suggestions??
--Raman@echo off
cd
dir /o:-d > todays_files.txt
find /c "10/22/2007" todays_files.txt > report.txt
echo "Note: There will two hidden files" >> report.txt
-- this was i have created so far.. can anybody send me the syntax of MAILING and capturing the system date as in this format mm/dd/yyyy the system date is given by the system variable %date%
C:\>echo %date% 22/10/2007
It will be in whatever your local date format is.
Thanks contrex i GOT it...
--Raman
|