I was wondering if there is any way to overcome the nonsense that Windows creates when you import photo's from a camera? I literally have thousands of jpeg files that were 'created' 5 years after the 'file was modified'? As far as I'm concerned the EXIF data from digital cameras should be the most important associated with any photo yet Windows says that the was created when it was imported to your PC.
Thanks in advance
Correcting date pictures were taken
Re: Correcting date pictures were taken
I have done this only a couple weeks ago with a powershell script:
$(Get-Item filename.jpg).creationtime=$(Get-Date "mm/dd/yyyy hh:mm am/pm")
I used Everything to generate a powershell script:
https://superuser.com/questions/292630/ ... -on-a-file
$(Get-Item filename.jpg).creationtime=$(Get-Date "mm/dd/yyyy hh:mm am/pm")
I used Everything to generate a powershell script:
- In Everything, select the files with the wrong creation date.
- From the Edit menu, under the Advanced menu, click Advanced Copy to folder....
- Check Regex.
- Change old format to: ^(.*?)$
- Change new format to: $(Get-Item \1).creationtime=$(Get-Date "07/24/2017 00:00 am")
- Copy the new filenames list to the clipboard.
- Click Cancel.
- Open notepad: Start -> Run -> Notepad
- In Notepad, paste the clipboard contents.
- From the File menu, click Save as...
- Change Save as type to: All Files (*.*)
- Save the file on the Desktop as setdates.ps1
- On the Desktop, right click setdates.ps1 and click Run with Powershell.
https://superuser.com/questions/292630/ ... -on-a-file
Re: Correcting date pictures were taken
(You have to be careful to not inadvertently hit the OK button [or Enter].)
Is that going to actually work - if the files are in different directories?
If you run the script from other then the "starting" directory (assuming you're only dealing with a single directory) ?
Isn't \1 going to copy the file name rather then the full name to the clipboard?
You can copy the Full Name from within Everything, but not from Renamer?
You might be able to generate the Full Name with Renamer?
Is that going to actually work - if the files are in different directories?
If you run the script from other then the "starting" directory (assuming you're only dealing with a single directory) ?
Isn't \1 going to copy the file name rather then the full name to the clipboard?
You can copy the Full Name from within Everything, but not from Renamer?
You might be able to generate the Full Name with Renamer?
Re: Correcting date pictures were taken
Ah yes, sorry, it should be the advanced copy to folder:
- From the Edit menu, under the Advanced menu, click Advanced Copy to folder....
Re: Correcting date pictures were taken
Try softwares:
BulkFileChanger
NewFileTime
FFTools - File & Folder Tools
BulkFileChanger
NewFileTime
FFTools - File & Folder Tools
Re: Correcting date pictures were taken
@void: And just when I thought "this is way off topic for the Everything > Support forum", you managed to bring it back on topic!
A quick search on the Internet (query: exif file date time windows) returns a dozen of utilities that can handle this.
A quick search on the Internet (query: exif file date time windows) returns a dozen of utilities that can handle this.