Forum Discussion
djdehaan
Mar 22, 2024Copper Contributor
How to see photo's and movies in the create-date order in OneDrive Photo
I moved all photo's and movies from Google Photo to OneDrive. However, movies from 2016 are listed first, whatever I try. It seems that there is a sort, but I cannot find that button. There is only a...
djdehaan
Mar 22, 2024Copper Contributor
Ok thanks. But EXIF is clearly not the solution here. The problem is that mp4 movies appear on top of the OneDrive Photos page, while their recording date is in 2016. I don't want those items on top! I don't want the list to be sorted on (apparently) upload date. I want it to sort on creation date. How do I do that? This seems so very basic, cant believe this product cannot do the obvious.
B4Art
Mar 26, 2024Brass Contributor
You could try using Powershell:
(get-item *) | Sort-Object CreationTime
Or
(get-item *) | Sort-Object CreationTime -Ascending
And there is variation With (get-item *) | Sort-Object CreationTimeUtc but that is not relevant for sorting.
It is (of course) only available from a CLI.
And I do understand that this is maybe not what you are searching for.
(get-item *) | Sort-Object CreationTime
Or
(get-item *) | Sort-Object CreationTime -Ascending
And there is variation With (get-item *) | Sort-Object CreationTimeUtc but that is not relevant for sorting.
It is (of course) only available from a CLI.
And I do understand that this is maybe not what you are searching for.