Hi guys this is my first time posting a question so go easy on me :)

Im required to write a batch file to do a few things, however writing batch scripts is very new to me, and apart from searching google and checking out random links im not really clued up on it.

Initially i thought my problem was very simple...capture the modified date of a txt file located in a specified directory, compare that date to the current date and if they are the same do something and if they are not then do something else.

The line i use to capture the current date is:

%date%

The lines i use to capture the modified date of my specified file is:

SET filename="C:\New Folder\New.txt"
FOR %%f IN (%filename%) DO SET filedatetime=%%~tf
ECHO %filedatetime:~0,-6% >> %destination%

In the above case im simply using echo to see what is returned. And it seems as if the date is returned but i get extra information example: 2012/02/19 02

I would like to know how to get the above values where they are comparable as well as how to compare them properly.

I wont go into detail about what id like to do after the evaluation of the compare, since i have not spent any time looking into that, and i dont feel like it would be fair to ask for that as well.

link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

I like dbenham's way, but if you want to make you're code work you can like this:

set currentDate=%date%
SET filename="C:\MyFile.txt"

FOR %%f IN (%filename%) DO SET filedatetime=%%~tf
IF %filedatetime:~0, 10% == %currentDate% goto same

goto notsame

:same
echo Dates the same, do some code here

goto next

:notsame
echo Dates NOT the same, do some code here
goto end

:next

Thought it would be worth knowing how to make yours work just in case you need it again.

Martyn

link|improve this answer
That may not always work - it doesn't on my machine because %date% is prefixed with the day of the week. Date formats change depending on the locale, one of the things that makes dates difficult. It's usually easy to make something work on a given machine, but a general solution is often difficult. – dbenham Feb 19 at 21:24
True enough. I preferred your answer. Good to know about the day of the week thing, very random. – SmithMart Feb 19 at 21:36
Thanx a lot guys!!! I actually figured out something similar to the one shown by martyn sometime yesterday by playing around with the code. Thats the best way to learn i figure. I was coming on here to share my solution. Thats when i saw your replies! Thanx for the effort. Seems as if dbenham's way is the way to go taking into account that the %date% seems to bring back different date formats. Again i appeciate the replies. Didnt expect such speedy responses considering the amount of questions that get asked on this site. :) – Kalim Feb 21 at 8:34
feedback

Working with dates is much harder in batch then it ought to be.

There is one command that can make your job easy in this case. FORFILES has the ability to process files that have been modified since a particular date. Use FORFILES /? from the command line to get documentation on its use.

This simple command will list all files that have been modified today:

forfiles /m * /d 0

If at least one file is found, then ERRORLEVEL is set to 0, else ERRORLEVEL is set to 1.

You have a specific file, so you can use

forfiles /m %filename% /d 0
if %errorlevel% == 0 (
  echo The file was modified today
  REM do whatever else you need to do
) else (
  echo The file has not been modified today
  REM do whatever else you need to do
)

There is a more concise way to do the above. The && operator is used to conditionally execute commands if the prior command was successful, || is used to conditionally execute commands if the prior command failed. However, be careful, the || commands will also execute if the && command(s) failed.

forfiles /m %filename% /d 0 && (
  echo The file was modified today
  REM do whatever else you need to do
) || (
  echo The file has not been modified today
  REM do whatever else you need to do
)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.