Is there a tool that would allow me to change the file creation time and file modified time on a list of files?
Must be able to work in the NTFS and FAT32 file systems.
Is there a tool that would allow me to change the file creation time and file modified time on a list of files?
Must be able to work in the NTFS and FAT32 file systems.
This can be done by using powershell to modify a list of FileInfo objects, for example:
Get-ChildItem G:\test\*.bak | foreach { $_.CreationTime = get-date "1/1/1982 1:00 pm"; $_.LastWriteTime = (get-date).AddDays(-1)}
Total Commander enables you to change creation date and time for a file.
Total Commander is of course the answer to all file management problems! However if you only want to change dates (and other file properties), Better File Attributes is a cheaper alternative.

It's a shell extension (added to the context menu of files) that allows you to change creation, access and modification date and time.
If you want a freeware application, SetFileDate will do the trick too.

BulkFileChanger is a pretty nifty free utility as well!

Of course there are also many advanced command-line file touch utilities as well that you can use in scripts, batch files and the like (such as this and this).