Hi, its me again. I have a question. What is the difference between 'Everything properties' and 'Windows Property System' ? see screenshots below
Everything Properties vs. Windows Properties difference?
Re: Everything Properties vs. Windows Properties difference?
For the most part, they are the same.
For example:
The Everything property Album will try to gather the property system value from System.Music.AlbumTitle
The Everything property Width will try to gather the property system value from system.image.horizontalsize and system.video.framewidth
Everything tries to simplify properties.
The list of Everything properties is well defined and cannot change.
Third parties cannot add Everything properties.
Third parties can add to the Windows Property System.
If the property system doesn't return a value, Everything will try its builtin property handlers.
For example, mkv and some pdf properties.
Everything will enforce strict types for properties.
For example, width will always use a 4 byte unsigned integer.
The Windows Property System uses variable types which take up more space and make it slower to sort.
For example:
The Everything property Album will try to gather the property system value from System.Music.AlbumTitle
The Everything property Width will try to gather the property system value from system.image.horizontalsize and system.video.framewidth
Everything tries to simplify properties.
The list of Everything properties is well defined and cannot change.
Third parties cannot add Everything properties.
Third parties can add to the Windows Property System.
If the property system doesn't return a value, Everything will try its builtin property handlers.
For example, mkv and some pdf properties.
Everything will enforce strict types for properties.
For example, width will always use a 4 byte unsigned integer.
The Windows Property System uses variable types which take up more space and make it slower to sort.
Re: Everything Properties vs. Windows Properties difference?
I noticed that when I added date taken field for photos from the windows properties value and everything value, one of them formatted the date as YYYY-MM-DD h:mm:ss tt and the other date taken was my custom format -- MMM dd, yyyy h:mm:ss ttvoid wrote: ↑Wed Apr 26, 2023 10:51 pm For the most part, they are the same.
For example:
The Everything property Album will try to gather the property system value from System.Music.AlbumTitle
The Everything property Width will try to gather the property system value from system.image.horizontalsize and system.video.framewidth
Everything tries to simplify properties.
The list of Everything properties is well defined and cannot change.
Third parties cannot add Everything properties.
Third parties can add to the Windows Property System.
If the property system doesn't return a value, Everything will try its builtin property handlers.
For example, mkv and some pdf properties.
Everything will enforce strict types for properties.
For example, width will always use a 4 byte unsigned integer.
The Windows Property System uses variable types which take up more space and make it slower to sort.