How can i convert the timestamp which in the runhistory file into human-readable time
How can i convert the timestamp which in the runhistory file into human-readable time
How can i convert the timestamp which in the runhistory file into human-readable time
Re: How can i convert the timestamp which in the runhistory file into human-readable time
- Open the CSV in your spreadsheet program
- Assuming the timestamp is in cell C2, enter this formula in cell D2:
- Format cell D2 as Date
See also: viewtopic.php?t=4484
- Assuming the timestamp is in cell C2, enter this formula in cell D2:
Code: Select all
= C2 / ( 8,64 * 100000000000 ) - 109205
See also: viewtopic.php?t=4484
Re: How can i convert the timestamp which in the runhistory file into human-readable time
An alternative would be to let Everything itself do the conversion:
(OK, I admit: it's a little bit quick and dirty : -)
- Make a copy of 'Run History.csv' . I called mine TEST.csv
- In Notepad, change the first line of TEST.csv from "Filename,Run Count,Last Run Date" to "Filename,Size,Date Modified" (without the quotes)
- Drag TEST.csv to Everything.exe (or - when in Eveything - open TEST.CSV as a 'File List')
- Enter search query "file:" to get your results (and get rid of the intermediate folders that are in the path to the files/folders in your search history).
The SIze colum actually contains the runcount.
(OK, I admit: it's a little bit quick and dirty : -)
- Make a copy of 'Run History.csv' . I called mine TEST.csv
- In Notepad, change the first line of TEST.csv from "Filename,Run Count,Last Run Date" to "Filename,Size,Date Modified" (without the quotes)
- Drag TEST.csv to Everything.exe (or - when in Eveything - open TEST.CSV as a 'File List')
- Enter search query "file:" to get your results (and get rid of the intermediate folders that are in the path to the files/folders in your search history).
The SIze colum actually contains the runcount.
- Attachments
-
- 2017-12-12 14_58_35-file_ - Everything.png (18.65 KiB) Viewed 2683 times
Re: How can i convert the timestamp which in the runhistory file into human-readable time
Thanks NOTNULL
I have found another answer.
I have found another answer.
Code: Select all
w32tm.exe /ntte the-timestamp
Re: How can i convert the timestamp which in the runhistory file into human-readable time
Yes, that was also suggested in the link ...