Properties

Discussion related to "Everything" 1.5 Alpha.
Locked
void
Developer
Posts: 18581
Joined: Fri Oct 16, 2009 11:31 pm

Properties

Post by void »

Everything 1.5 introduces "Properties".

Properties are metadata from your files, such as Length, Author, Tags, Size on Disk, Filename length, Dimensions, Program Version, Regular Expression Match 1, Frame rate, etc...

View properties
Search properties
Sort by properties
Find duplicated properties
Index properties for instant searching and instant sorting
Update indexed properties
Property gathering methods
Setting property values
Windows Property System
Everything Properties
User values
.metadata.efu
property_alternate_data_stream_wchar
property_alternate_data_stream_ansi
property_alternate_data_stream_utf8
Opus Meta Information
XYplorer tag.dat
Summary Information



View properties

Right click the column header and click Add column... choose a property to display:


Select a column to show:


For example, the Length column:


Press Alt + 2 to auto size the Everything window and all columns.

To add advanced columns:
  • Right click the column header and click Add columns....
  • Select the desired column(s) and click OK.


Search properties

Right click the column header of the property you wish to search and click Search for Property:


Complete the search, for example find files that have a length of 1 minute:

Showing search syntax and examples is in development.


Sort properties

Click the column header to sort by that property.

For example, Click the Length column header to sort by Length:




Find duplicates

Right click the column header of the property you wish to find duplicates and click Find Property Duplicates:


Files that are not duplicated are removed from the result list.
DUPE is shown in the status bar.
Double click DUPE in the status bar or type in a new search to restore all search results.

For more information, please see:
Finding Duplicates



Index Properties

Adding a property to your index will:
  • Make searching for this property instant.
  • Make sorting by this property instant (when fast sort is enabled).
To add a property to your index:
  • In Everything, from the Tools menu, click Options.
  • Click the Properties tab on the left.
  • Click Add....
  • Select a property and click OK.
  • Check Fast Sort for instant sorting.
  • Click OK.
    Everything will perform a quick reindex
    Everything will read this property for the selected file types in the background.
    Progress is shown in the status bar.
    Right click this progress bar to optionally pause (and later resume) property indexing.

To index properties for a specific file type only, for example to index the Length property for mp3 files in D:\Media only:
  • In Everything, from the Tools menu, click Options.
  • Click the Properties tab on the left.
  • Select the Length property.
  • Change Include only folders to:
    D:\Media
  • Change Include only files to:
    *.mp3
  • Check Fast Sort for instant sorting.
  • Click OK.
To search for properties that are not indexed, use the notindexed: search modifier.

See also Update indexed properties



Update indexed properties

Generally you will not need to update properties, all the properties for a file are rescanned when it is modified.

To force Everything to rescan indexed properties:
  • In Everything, from the Tools menu, click Options.
  • Click the Indexes tab on the left.
  • Click Force Rebuild.
  • Click OK


Property Gathering Methods

Everything will load properties with the following methods: (Listed in order of priority from highest to lowest).



Everything Properties will gather values from the Windows Property System.
If no Windows Property System property value is found, Everything will fall back to a built-in property handler.

The built-in property handler only support common file formats (eg: mp3/mp4/jpg).
File types known to Everything.

To gather property values with the built-in property handler instead of the Windows Property System:
  • In Everything 1.5, from the Tools menu, click Options.
  • Click the Advanced tab on the left.
  • To the right of Show settings containing, search for:
    property
  • Select: property_builtin_handler_priority
  • Set the value to: 1
  • Click OK.
If no built-in property handler property value is found, Everything will fall back to the Windows Property System.

property_system_priority
property_builtin_handler_priority



Setting property values

Property values can be set with the following methods:

Windows Property System

To select a Windows Property System property:
  • In the Property Select window, click Windows Property System on the left.
  • Select a property and click OK.


To set a property value:
  • Right click a file and click Properties.
  • Click the Details tab.
  • Set the desired property.
  • Click OK.
Windows will modify the file to save the property value


Property values for folders can be set with Desktop.ini.
The Windows Property System will load these values.

Property values for files and folders can be set with Summary Information.
The Windows Property System will load these values on Windows 10 and later.



Desktop.ini

To set properties for a folder (advanced):
  • From the Start menu, type: notepad
  • Select Notepad.
  • In Notepad, copy, paste and modify the following:

    Code: Select all

    [{F29F85E0-4FF9-1068-AB91-08002B27B3D9}]
    Prop2 = 31,My Title
    Prop3 = 31,My Subject
    Prop4 = 31,My Author
    Prop5 = 31,my Keywords(Tags);Another Tag;More Tags
    ;Star Rating: 1-99
    [{64440492-4C8B-11D1-8B70-080036B11A03}]
    Prop9 = 31,75
    
    Syntax is:
    [{Property handler GUID}]
    Prop<property number> = 31,My property value
    Core System Properties
    More Properties
  • From the File menu, click Save As....
  • Browse to the folder where you would like to set properties.
  • Change Save as type to: All Files.
  • Set the Filename to: Desktop.ini
  • Click Save.
    These properties are also shown in Windows Explorer.




User values

To set custom values for any property (advanced):
  • Create a CSV file ( eg: C:\Propertys\Tags.csv ) with the following header:

    Code: Select all

    Filename,Tags
    
    where Tags is the property for the custom values in this file. You can also declare more than one property.
    On each line, add the full path and filenames with the property value, for example:

    Code: Select all

    C:\Photos\picture1.jpg,beach;sunny
    C:\Photos\picture2.jpg,rain;flower
    
  • Add the custom values csv to Everything:
  • In Everything, from the Tools menu, under the Debug submenu, click Config.
  • Change the following semicolon delimited (;) line:
    property_user_values=
  • to:
    property_user_values=C:\Propertys\Tags.csv
  • Save changes and exit notepad
  • In Everything, accept the prompt to reload the config.
  • These custom user values will override any properties on the existing file.


.metadata.efu

.metadata.efu are sidecar files used to describe property values for files/folders.

For more information, please see: .metadata.efu.



property_alternate_data_stream_wchar
property_alternate_data_stream_ansi
property_alternate_data_stream_utf8

Gather and store property values in a named alternate data stream.

For more information, please see:
property_alternate_data_stream_wchar
property_alternate_data_stream_ansi
property_alternate_data_stream_utf8



Opus Meta Information

Gather and store rating and tag property values from the OpusMetaInformation alternate data stream.

For more information, please see: Opus Meta Information.



XYplorer tag.dat

Gather and store property values from the XYplorer tag.dat file.

For more information, please see: XYplorer tag.dat.



Summary Information

Gather and store property values from the \005SummaryInformation alternate data stream.

For more information, please see: Summary Information.
void
Developer
Posts: 18581
Joined: Fri Oct 16, 2009 11:31 pm

Re: Properties

Post by void »

Everything Properties

Audio
Content
Document
File
Image
Index
Program
Search
Video
All Everything Properties



Audio
Length
Audio Sample Rate
Audio Channels
Audio Bits Per Sample
Audio Bit Rate
Audio Format
Title
Subtitle
Rating
Tags
Comment
Artist
Album Artist
Album
Year
Date Released
Track
Genre
Producer
Publisher
Content Provider
Date Encoded
Encoded By
Author URL
Promotion URL
Copyright
Parental Rating
Parental Rating Reason
Composer
Conductor
Group Description
Period
Mood
Part of Set
Initial Key
Beats per Minute
Protected
Part of a Compilation



Content
File Signature
CRC-32
CRC-64
MD5
SHA1
SHA256



Document
Title
Subtitle
Rating
Tags
Comment
Authors
Last Author
Revision Number
Version Number
Software
Company
Manager
Date Content Created
Date Saved
Date Printed
Total Editing Time
Content Status
Document Content Type
Page Count
Word Count
Character Count
Line Count
Paragraph Count
Slide Count
Note Count
Hidden Slide Count
Presentation Format
Template
Scale
Links Dirty
Language



File
Status
Size on Disk
Kind
Display Name
Shared With
Owner
Computer
Date Changed
File ID
Parent File ID
Hard Link Count
Hard Link Filenames
Alternate Data Stream Count
Alternate Data Stream Names



Image
Width
Height
Dimensions
Aspect Ratio
Bit Depth
Frame Count
Title
Subtitle
Rating
Tags
People
Comment
Authors
Date Taken
Software
Date Acquired
Copyright
Image ID
Horizontal Resolution
Vertical Resolution
Compression
Resolution Unit
Color Representation
Compressed Bits Per Pixel
Camera Maker
Camera Model
F-stop
Exposure Time
ISO Speed
Exposure Bias
Focal Length
Max Aperture
Aperture
Metering Mode
Subject Distance
Flash Mode
Flash Energy
35mm Focal Length
Lens Maker
Lens Model
Flash Maker
Flash Model
Camera Serial Number
Contrast
Brightness
Light Source
Exposure Program
Saturation
Sharpness
White Balance
Photometric Interpretation
Digital Zoom
EXIF Version
Latitude
Longitude
Altitude



Index
Path and Name
Stem
Parent Name
Parent Path
Name Length
Path and Name Length
Date Recently Changed
Date Run
Folder Depth
Descendant Count
Descendant Folder Count
Descendant File Count
Child Count
Child Folder Count
Child File Count
Sibling Count
Sibling Folder Count
Sibling File Count
Index Type
Volume Label
Online
File List Name
Network Index Host



Program
Target Machine
Digital Signature Name
Digital Signature Timestamp
Title
Subtitle
Description
Version
Product Name
Product Version
Company
Copyright
Category
Tags
Comment
Language
Trademarks
Original Filename
Authors
Revision Number
Date Content Created
Software



Search
Regular Expression Match 0
Regular Expression Match 1
Regular Expression Match 2
Regular Expression Match 3
Regular Expression Match 4
Regular Expression Match 5
Regular Expression Match 6
Regular Expression Match 7
Regular Expression Match 8
Regular Expression Match 9



Video
Length
Width
Height
Dimensions
Aspect Ratio
Frame Rate
Video Bit Rate
Video Format
Total Bit Rate
Audio Sample Rate
Audio Channels
Audio Bits Per Sample
Audio Bit Rate
Audio Format
Title
Subtitle
Rating
Tags
Comment
Artist
Year
Genre
Director
Producer
Writer
Publisher
Content Provider
Date Encoded
Encoded By
Author URL
Promotion URL
Copyright
Parental Rating
Parental Rating Reason
Composer
Conductor
Period
Mood
Part of Set
Initial Key
Beats per Minute
Protected
void
Developer
Posts: 18581
Joined: Fri Oct 16, 2009 11:31 pm

Re: Properties

Post by void »

35mm Focal Length
The camera 35mm focal length in millimeters.

Album
The album name.

Album Artist
The album artist name.

Alignment Requirement
The required volume alignment size in bytes.

Allocation Size
The allocated size on disk in bytes used to store the file contents.

Alternate Data Stream ANSI
The data as ANSI text from all alternate data streams.

Alternate Data Stream Count
The total number of alternate data streams.

Alternate Data Stream Hex
The data as a hex string from all alternate data streams.

Alternate Data Stream Names
The names of all alternate data streams.

Alternate Data Stream Text/Plain
The data as text/plain from all alternate data streams.

Alternate Data Stream UTF-8
The data as UTF-8 from all alternate data streams.

Alternate Data Stream UTF-16
The data as UTF-16 from all alternate data streams.

Alternate Data Stream UTF-16BE
The data as UTF-16BE from all alternate data streams.

Altitude
The GPS altitude.

Aperture
The camera aperture in f-stops.

Artist
The artist name(s).

Aspect Ratio
The aspect ratio of the image or video.

Attributes
The file attributes.

Attributes can be zero or more of the following:
  • R = Read Only
  • H = Hidden
  • S = System
  • D = Directory
  • A = Archive
  • V = Integrity Stream
  • X = No Scrub Data
  • N = Normal
  • T = Temporary
  • L = Reparse Point
  • C = Compressed
  • O = Offline
  • I = Not Content Indexed
  • E = Encrypted
  • U = Unpinned
  • P = Pinned
  • M = Recall on Data Access

Audio Bit Rate
The audio bit rate in bits per second.

Audio Bits Per Sample
The audio sample size in bits.

Audio Channels
The total number of audio channels.

Audio Format
The audio format.

Audio Sample Rate
The audio sample rate in bits per second.

Audio Track Count
The total number of audio tracks.

Author URL
The author's website.

Authors
The name(s) of the author(s)

Available Free Disk Size
The size in bytes of the available free disk space for this volume.

Beats Per Minute
The average number of beats per minute for this audio file.

Binary Type
The binary type for executable files.

Birth Object ID
The birth object ID for an NTFS object ID.

See also Birth Volume ID
See also Domain ID

Birth Volume ID
The birth volume ID for an NTFS object ID.

See also Birth Object ID
See also Domain ID

Bit Depth
The image or video bit depth in bits per pixels.

Brightness
The photographic brightness.

Byte Offset For Partition Alignment
The byte offset for volume partition alignment.

Byte Offset For Sector Alignment
The byte offset for volume sector alignment.

Byte Order Mark
The byte order mark from UTF-8, UTF-16 or UTF-16BE files.

Camera Maker
The camera maker.

Camera Model
The camera model.

Camera Serial Number
The camera serial number.

Case Sensitive Dir
Filenames in this directory are case sensitive.

Category
A list of categories describing the file or folder.
Deprecated use Tags instead.

Character Count
A total number of characters in the file content.

Character Encoding
The text/plain file encoding.

Child Count
The total number of files/folders in this folder.

Child Count From Disk
The total number of files/folders in this folder from disk.

Child File Count
The total number of files in this folder.

Child File Count From Disk
The total number of files in this folder from disk.

Child Folder Count
The total number of child folders in this folder.

Child Folder Count From Disk
The total number of child folders in this folder from disk.

Child Occurrence Count
The total number of child: hits in this folder.

Cluster Size
The volume cluster size in bytes.

Color Representation
The image color space.

Column 0
Column 1
Column 2
Column 3
Column 4
Column 5
Column 6
Column 7
Column 8
Column 9
Column A
Column B
Column C
Column D
Column E
Column F
The custom column value.

The value can be set by using formulas.

Comment
The file comment.

Company
The company or publisher.

Composer
The media composer.

Compressed Bits Per Pixel
The image compressed bits per pixel.

Compressed Size
The NTFS-compressed size on disk in bytes.

Compression
The image compression method.

Compression Chunk Shift
The NTFS compression chunk shift.

Compression Cluster Shift
The NTFS compression cluster shift.

Compression Format
The NTFS compression format.

Compression Ratio
The NTFS compression ratio.

Compression Unit Shift
The NTFS compression unit shift.

Computer
The originating computer name.

Conductor
The media file conductor.

Container File Count
The total number of files in the archive.

Container Filenames
The filenames of the files in the archive.

Content Provider
The media file content provider.

Content Status
The document file content status.

Content Type
The content mime type from the registry.

Contrast
The photo contrast.

Copyright
The file copyright message.

CRC-32
The CRC-32 hash of the file content.

CRC-64
The CRC-64 hash of the file content.

Custom Property 0
Custom Property 1
Custom Property 2
Custom Property 3
Custom Property 4
Custom Property 5
Custom Property 6
Custom Property 7
Custom Property 8
Custom Property 9
The custom property value.

Custom property values can be set from Alternate data streams.

Date Accessed
The file last accessed date.

Date Accessed Date
Just the date part from the file last accessed date.

Date Accessed Time
Just the time part from the file last accessed date.

Date Acquired
The photo acquired date.

Date Changed
The date the file changed in the NTFS master file table.

Date Content Created
The media file content creation date.

Date Created
The file creation date.

Date Created Date
Just the date part from the file creation date.

Date Created Time
Just the time part from the file creation date.

Date Deleted
The date the file was deleted.

Date Encoded
The date the media file was encoded.

Date Indexed
The date the file was indexed in Everything.

Date Modified
The file modification date.
Date Modified Date
Just the date part from the file modification date.

Date Modified Time
Just the time part from the file modification date.

Date Printed
The document file last print date.

Date Received
The email received date.

Date Recently Changed
The date the file changed in the Everything index.

Date Released
The media release date.

Date Run
The last date the file was run from Everything.

Date Saved
The document file last save date.

Date Sent
The email sent date.

Date Taken
The photo taken date.

Delete Pending
The file is pending a deletion.

Descendant Count
The total number of files and folders in this folder and subfolders.

Descendant File Count
The total number of files in this folder and subfolders.

Descendant Folder Count
The total number of child folders in this folder and subfolders.

Descendant Occurrence Count
The total number of descendant: hits in this folder and subfolders.

Description
The file description.

Digital Signature Name
The digital signature name.

Digital Signature Timestamp
The digital signature timestamp.

Digital Zoom
The photo digital zoom.

Dimensions
The image or video dimensions in pixels.

Director
The director(s) name.

Display Name
The Windows shell display name.

Display Path and Name
The Windows shell display path and name.

Document Content Type
The document file content type.

Domain ID
The domain ID for an NTFS object ID.

See also Birth Object ID
See also Birth Volume ID


Drive Type
Type drive type.

Can be one of the following values:
  • Unknown
  • No Root Dir
  • Removable
  • Fixed
  • Remote
  • CD-Rom
  • RAM Disk

Effective Physical Bytes Per Sector For Atomicity
The volume effective physical bytes per sector for atomicity.

Encoded By
The encoder name.

Encryption Status
The file system encryption status.

Exif Version
The photo file EXIF version.

Exposure Bias
The photo exposure bias.

Exposure Program
The photo exposure program.

Exposure Time
The photo exposure time in seconds.

Extension
The file extension without the dot (.)

Extension Frequency
The extension frequency in the entire index.

Extension Length
The extension length in UTF-16 characters.

F-Stop
The photo file f-stop.

File ID
The file system file ID.

File List Name
The name part of the file list filename.

File List Path and Name
The full file list filename.

File Signature
The file mime type from the file signature.

File Storage Info Flags
The volume flags specifying information about the alignment of the storage.

Can be zero or more of the following values:
  • 0x00000001 STORAGE-INFO-FLAGS-ALIGNED-DEVICE
  • 0x00000002 STORAGE-INFO-FLAGS-PARTITION-ALIGNED-ON-DEVICE

File System
The file system type.

File System Flags
The file system flags.

Can be zero or more of the following flags:
  • 0x00000001 FILE-CASE-SENSITIVE-SEARCH
  • 0x00000002 FILE-CASE-PRESERVED-NAMES
  • 0x00000004 FILE-UNICODE-ON-DISK
  • 0x00000008 FILE-PERSISTENT-ACLS
  • 0x00000010 FILE-FILE-COMPRESSION
  • 0x00000020 FILE-VOLUME-QUOTAS
  • 0x00000040 FILE-SUPPORTS-SPARSE-FILES
  • 0x00008000 FILE-VOLUME-IS-COMPRESSED
  • 0x00010000 FILE-SUPPORTS-OBJECT-IDS
  • 0x00020000 FILE-SUPPORTS-ENCRYPTION
  • 0x00040000 FILE-NAMED-STREAMS
  • 0x00080000 FILE-READ-ONLY-VOLUME
  • 0x00100000 FILE-SEQUENTIAL-WRITE-ONCE
  • 0x00200000 FILE-SUPPORTS-TRANSACTIONS
  • 0x00400000 FILE-SUPPORTS-HARD-LINKS
  • 0x00800000 FILE-SUPPORTS-EXTENDED-ATTRIBUTES
  • 0x01000000 FILE-SUPPORTS-OPEN-BY-FILE-ID
  • 0x02000000 FILE-SUPPORTS-USN-JOURNAL
  • 0x08000000 FILE-SUPPORTS-BLOCK-REFCOUNTING
  • 0x20000000 FILE-DAX-VOLUME

First 2 Bytes
First 4 Bytes
First 8 Bytes
First 16 Bytes
First 32 Bytes
First 64 Bytes
First 128 Bytes
First 256 Bytes
First 512 Bytes
First Byte
The first few bytes of the file content in hex.

Flash Energy
The photo strobe energy at the time the image was captured, measured in Beam Candle Power Seconds.

Flash Maker
The photo flash maker.

Flash Mode
The photo flash mode.

Flash Model
The photo flash model.

Focal Length
The photo focal length in millimeters.

Folder Data and Names CRC-32
Folder Data and Names CRC-64
Folder Data and Names MD5
Folder Data and Names SHA-1
Folder Data and Names SHA-256
Folder Data and Names SHA-512
The combined hash of all the file content and filenames in this folder and subfolders.

Folder Data CRC-32
Folder Data CRC-64
Folder Data MD5
Folder Data SHA-1
Folder Data SHA-256
Folder Data SHA-512
The combined hash of all file content in this folder and subfolders.

Folder Depth
The total number of parent folders for this file/folder.

Folder Names CRC-32
Folder Names CRC-64
Folder Names MD5
Folder Names SHA-1
Folder Names SHA-256
Folder Names SHA-512
The combined hash of all the filenames in this folder and subfolders.

Frame Count
The total number of frames in the image or video file.

Frame Rate
The frame rate of the video file.

Free Disk Size
The volume free space in bytes.

From
The from email address in the email file.

Genre
The genre of the audio file.

Group Description
The audio file content group description.

Hard Link Count
The total number of file system hard links.

Hard Link Filenames
The relative filename of each hard link.

Height
The image or video file height in pixels.

Hidden Slide Count
The total number of hidden slides in the document file.

Horizontal Resolution
The image or video horizontal resolution in dots per inch.

Host URL
The zone identifier host URL.

See also Zone ID
See also Referrer URL

Image ID
The image ID.

Incur Seek Penalty
Reading content from the file will incur a seek penalty.

Index Number
The Everything zero-based index number.

Index Type
The Everything index type.

Can be one of the following:
  • NTFS
  • ReFS
  • Folder
  • File List
  • Network
  • FAT
  • Network Drive

Initial Key
The audio file initial key.

Is Folder
The item is a Everything folder.

ISO Speed
The ISO speed when the photo was taken.

Kind
The file kind.

Language
The language associated with the file.

Last 2 Bytes
Last 4 Bytes
Last 8 Bytes
Last 16 Bytes
Last 32 Bytes
Last 64 Bytes
Last 128 Bytes
Last 256 Bytes
Last 512 Bytes
Last Byte
The last few bytes of the file in hex.

Last Author
The document file last author name.

Latitude
The GPS latitude.

Length
The audio or video file duration in seconds.

Lens Maker
The photo lens maker.

Lens Model
The photo lens model.

Light Source
The photo light source.

Line Count
The total number of lines in the document file.

Links Dirty
The document file contains invalidated links.

Logical Bytes Per Sector
The volume logical bytes per sector.

Long Name
The name part of the long filename.

Long Path and Name
The long path name of the file.

Longitude
The GPS longitude.

Manager
The manager name.

Max Aperture
The max aperture when the photo was taken.

Max Child Depth
The maximum child depth for this folder.

Maximum Component Length
The maximum filename length in UTF-16 characters for this file system.

MD5
The MD5 hash from the file content.

md5sum MD5
The MD5 hash from the .md5 sidecar file.

md5sum Pass
The MD5 hash from the .md5 sidecar file matches the MD5 hash from the file content.

Metering Mode
The metering mode used by the camera.

Mood
The audio file mood.

Name
The name part of the filename.

Name Frequency
The name frequency in the entire index.

Name Length
The length of the name in UTF-16 characters.

Name Length in UTF-8 Bytes
The length of the name in UTF-8 bytes.

Network Index Host
The Everything network index host.

Note Count
The document file note count.

Object ID
The file system object ID.

Offline Availability
The offline availability.

Offline Status
The offline status.

Online
Everything has determined this volume to be online.

Opened By
A list of programs that have this file opened.

Opens With
The name of the program that opens this file.

Orientation
The image orientation.

Original Filename
The program original filename.

Original Location
The original location of the deleted file.

Out of Date
The Everything index of this file system is out of date.

Owner
The owner name of this file.

Page Count
The total number of pages in this document file.

Paragraph Count
The total number of paragraphs in this document file.

Parent File ID
The file system parent ID.

Parent Name
The parent folder name.

Parent Path
The parent folder path.

Parent Size
The size of the parent folder in bytes.

Parental Rating
The media file parental rating.

Parental Rating Reason
The reason for the parental rating.

Parse Name
The Windows shell parse name.

Parse Path and Name
The Windows shell parse path and name.

Part of a Compilation
The audio file is part of a compilation.

Part of Set
The audio file is part of a set.

Path
The path part of the filename.

Path and Name
The full path and name of the file or folder.

Path and Name Length
The length in UTF-16 characters of the path and name.

Path and Name Length in UTF-8 Bytes
The length in UTF-8 bytes of the path and name.

Path Length
The length in UTF-16 characters of the path.

People
The names of people associated with the file.

Perceived Type
The registry perceived type.

Period
The audio period.

Photometric Interpretation
The photo photometric interpretation.

Physical Bytes Per Sector For Atomicity
The volume physical bytes per sector for atomicity.

Physical Bytes Per Sector For Performance
The volume physical bytes per sector for performance.

Plain Text Line Count
The total number of lines from the text/plain content.

Presentation Format
The document file presentation format.

Producer
The name(s) of the producer(s).

Product Name
The program product name.

Product Version
The program product version.

Promotion URL
The media file promotional URL.

Protected
The file is DRM protected.

Publisher
The media file publisher.

QuickTime Metadata
A list of all the QuickTime metadata.

Rating
The user rating out of 5 stars.

Referrer URL
The zone identifier host URL.

See also Zone ID
See also Host URL

Regular Expression Match 0
Regular Expression Match 1
Regular Expression Match 2
Regular Expression Match 3
Regular Expression Match 4
Regular Expression Match 5
Regular Expression Match 6
Regular Expression Match 7
Regular Expression Match 8
Regular Expression Match 9
Regular Expression Matches 1-9
The captured regex text from a regex: search.

Related Sound File
The document related sound file.

Remote Protocol
The remote protocol for network drives and network shares.

Remote Protocol Flags
The remote protocol flags for network drives and network shares.

Can be zero or more of the following:
  • 0x01 REMOTE-PROTOCOL-FLAG-LOOPBACK
  • 0x02 REMOTE-PROTOCOL-FLAG-OFFLINE
  • 0x04 REMOTE-PROTOCOL-INFO-FLAG-PERSISTENT-HANDLE
  • 0x08 REMOTE-PROTOCOL-INFO-FLAG-PRIVACY
  • 0x10 REMOTE-PROTOCOL-INFO-FLAG-INTEGRITY
  • 0x20 REMOTE-PROTOCOL-INFO-FLAG-MUTUAL-AUTH

Remote Protocol Version
The remote protocol version for network drives and network shares.

Reparse Tag
The file system reparse tag for folders and files.

Reparse Target
The reparse target for folders and files.

Resolution Unit
The image file resolution unit.

Revision Number
The document revision number.

Root Name
The name of the root.

Root Size
The total size of all files on this volume.

Row
The visible row number.

Run Count
The total number of times this file or folder has been run from Everything.

Saturation
The direction of saturation processing applied by the camera when the photo was taken.

Scale
The document scale.

Sector Size
The volume sector size.

SFV CRC-32
The CRC-32 hash from the sfv sidecar file.

SFV Pass
The CRC-32 hash from the sfv sidecar file matches the CRC-32 from the file content.

SHA-1
The SHA-1 hash from the file content.

SHA-256
The SHA-256 hash from the file content.

SHA-384
The SHA-384 hash from the file content.

SHA-512
The SHA-512 hash from the file content.

sha1sum Pass
The SHA-1 hash from the .sha1 sidecar file matches the SHA-1 hash from the file content.

sha1sum SHA-1
The SHA-1 hash from the .sha1 sidecar file.

sha256sum Pass
The SHA-256 hash from the .sha256 sidecar file matches the SHA-256 hash from the file content.

sha256sum SHA-256
The SHA-256 hash from the .sha256 sidecar file.

sha512sum Pass
The SHA-512 hash from the .sha512 sidecar file matches the SHA-512 hash from the file content.

sha512sum SHA-512
The SHA-512 hash from the .sha512 sidecar file.

Shared With
Indicates who the item is shared with.

Sharpness
Indicates the direction of sharpness processing applied by the camera when the photo was taken.

Shell Attributes
The shell attributes.

Can be zero or more of the following flags:
  • 0x00000001 SFGAO-CANCOPY
  • 0x00000002 SFGAO-CANMOVE
  • 0x00000004 SFGAO-CANLINK
  • 0x00000008 SFGAO-STORAGE
  • 0x00000010 SFGAO-CANRENAME
  • 0x00000020 SFGAO-CANDELETE
  • 0x00000040 SFGAO-HASPROPSHEET
  • 0x00000100 SFGAO-DROPTARGET
  • 0x00000177 SFGAO-CAPABILITYMASK
  • 0x00001000 SFGAO-SYSTEM
  • 0x00002000 SFGAO-ENCRYPTED
  • 0x00004000 SFGAO-ISSLOW
  • 0x00008000 SFGAO-GHOSTED
  • 0x00010000 SFGAO-LINK
  • 0x00020000 SFGAO-SHARE
  • 0x00040000 SFGAO-READONLY
  • 0x00080000 SFGAO-HIDDEN
  • 0x000FC000 SFGAO-DISPLAYATTRMASK
  • 0x00100000 SFGAO-NONENUMERATED
  • 0x00200000 SFGAO-NEWCONTENT
  • 0x00400000 SFGAO-STREAM
  • 0x00800000 SFGAO-STORAGEANCESTOR
  • 0x01000000 SFGAO-VALIDATE
  • 0x02000000 SFGAO-REMOVABLE
  • 0x04000000 SFGAO-COMPRESSED
  • 0x08000000 SFGAO-BROWSABLE
  • 0x10000000 SFGAO-FILESYSANCESTOR
  • 0x20000000 SFGAO-FOLDER
  • 0x40000000 SFGAO-FILESYSTEM
  • 0x70C50008 SFGAO-STORAGECAPMASK
  • 0x80000000 SFGAO-HASSUBFOLDER
  • 0x80000000 SFGAO-CONTENTSMASK
  • 0x81044000 SFGAO-PKEYSFGAOMASK

Short Name
The file system short name.

Short Path and Name
The file system short path and name.

Shortcut Target
The shortcut target filename.

Shutter Speed
The shutter speed of the camera when the photo was taken in APEX units.

Sibling Count
The total number of sibling files and folders in the index.

Sibling File Count
The total number of sibling files in the index.

Sibling Folder Count
The total number of sibling folders in the index.

Size
The file size in bytes.

Size Frequency
The size frequency in the entire index.

Size on Disk
The size on disk in bytes.

Slide Count
The total number of slides in the document file.

Software
The software used to create document or media file.

Status
The status icon for cloud files.

Stem
The name part of the filename without the extension.

Stem Length
The length of the stem in UTF-16 characters.

Subject
The subject of the document or media file.

Subject Distance
The distance to the subject in meters.

Subtitle
The media file subtitle.

Subtitle Track Count
The total number of subtitle tracks in the video file.

Tags
The keywords for this file or folder.

Target Machine
The executable file target machine.

Template
The document template.

Title
The media file title.

To
The to email address for email files.

Total Alternate Data Stream Size
The total size in bytes of all the alternate data streams.

Total Alternate Data Stream Size On Disk
The total size in bytes on disk of all the alternate data streams.

Total Bit Rate
The total bit rate in bits per second calculated from the total size divided by the duration.

Total Child Size
The total size in bytes of all the direct files in the folder (not counting subfolders)

Total Disk Size
The total volume size in bytes.

Total Editing Time
The document total editing time in seconds.

Total Size
The total folder size in bytes.

Total Size On Disk
The total folder size in bytes on disk.

Track
The audio file track number.

Trademarks
The trademark.

Transcoded For Sync
The image has been transcoded for synchronizing with an external device.

Type
The file type from the registry.

URL
The target URL.

Used Disk Size
The total unused disk space in bytes on the volume.

Valid UTF-8
The file contents contain a valid UTF-8 stream.

Version
The executable version.

Version Number
The document version number.

Vertical Resolution
The image or video vertical resolution in dots per inch.

Video Bit Rate
The video bit rate in bits per second.

Video Format
The video format.

Video Track Count
The total number of video tracks in the video file.

Volume Label
The volume label.

Volume Name
The unique volume name.

Volume Path
The volume path.

Volume Serial Number
The volume serial number.

Vorbis Comment
A list of all the Vorbis Comment metadata.

White Balance
The white balance mode at the time the photo was shot.

Width
The image or video file width in pixels.

Word Count
The total number of words in the document file.

Writer
The name(s) of the writer(s).

Year
The release year.

Zone ID
The zone identifier Zone ID.

See also Host URL
See also Referrer URL
Locked