CreationTime and LastWriteTime

0

My wife copy photos to a smartphone.

The pictures are 20160403_145233.jpg are called, are the first of 2012/03/10

But The creation date is 04/14/2016, date of transfer.

What she sorts the photos by month, are all of April, 2016.

How to change the date of creation for proper sorting?

Pascal PORTEAU

Posted 2016-04-21T14:01:17.027

Reputation: 9

Do you have access to a linux computer? – geek1011 – 2016-04-21T14:02:35.303

4Which OS are you using? – Eric F – 2016-04-21T14:30:55.637

Sorting on the phone? – Moab – 2016-04-21T15:56:08.843

Answers

0

If you have access to a linux computer, you can use the touch command for this.

Example:

touch -amt timestamp file
  • -a Tells touch to set the last accessed date
  • -m Tells touch to set the last modified date
  • -t Sets the timestamp - use YYYYMMDDhhmm time format

geek1011

Posted 2016-04-21T14:01:17.027

Reputation: 1 180