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.