|
FIELD NAME
Short description
|
DESCRIPTION
π Sample query
β
Expected result
π Learn more
|
|
atime
last accessed time
|
|
|
ctime
last changed time
|
|
|
dir_count
number of recursive directories in a directory
|
π dir_count:22
β
Directories containing exactly 22 subfolders, including all nested folders.
-
 π Counts the total number of subfolders inside a directoryβthis includes subfolders within subfolders, at any depth. This gives a complete view of how many folders exist within a directory.
|
|
dir_count_norecurs
number of non-recursive directories in a directory
|
π dir_count_norecurs:5
β
Directories that contain exactly 5 direct subdirectories, without counting any deeper nested folders.
π Counts only the direct (top-level) subfolders within a directory. Subfolders inside those folders are not included, making it useful for understanding the structure at a single level.
|
|
dir_depth
directory depth in a path
|
π dir_depth:2
β
Directories that are exactly 2 levels deep from the starting path, for example: /projects/media/2024 β depth 2 from /projects
π Indicates how deep a directory is within a path. A depth of 1 is directly under the starting location, depth 2 is one level deeper, and so on.
|
|
extension
file extension
|
π extension:mov
β
Ensures precise results by returning only files with the exact .mov extension.
π Manual searches, such as extension:mov, help refine results by targeting specific file types. A general search for mov may return unrelated matches, such as all_mov_titles_2025.txt, where βmovβ appears in the name but is not the file extension.
|
|
file_count
number of recursive files inside a directory
|
π file_count:85, file_count:10?, file_count:>100
β
Using file_count:>100 example finds directories that contain more than 100 files, including all nested folders.
π Counts the total number of files inside a directory, including files in all subfolders. Unlike file_count_norecurs, which only counts files directly inside a folder, file_count includes everything within the directory at any depth. Refer to Advanced Queries | Syntax and Grouping to learn about the equations you can use to build relevant queries.
|
|
file_count_norecurs
number of non-recursive files within a directory
|
π file_count_norecurs:<=100
β
Finds directories that contain 100 or fewer files, counting only files directly inside them.
π Counts only the files directly within a directory (top level). Files inside subfolders are not included. This makes it useful for quickly assessing folder size at a single level and identifying small or underutilized directories. Refer to Advanced Queries | Syntax and Grouping to learn about the equations you can use to build relevant queries.
|
|
file_size
actual file size, not disk usage
|
|
|
file_size_du
disk usage file size, aka allocated size
|
|
|
group
group name associated with a file or directory
|
π group:engineering
β
Using group:engineering finds all files and directories owned by the engineering group.
π Represents the group ownership associated with a file or directory. Group values depend on your system configurationβrefer to the User Analysis Report or consult your System Administrator for details.
|
|
ino
inode number of a file or directory
|
π ino:8838389885
β
Finds the exact file or directory with that unique inodeβregardless of its name or location.
π A unique identifier assigned by the filesystem to each file or directory. Unlike names or paths, the inode stays the same even if a file is renamed or moved. It can also help identify files that share the same data (hardlinks). Learn about the differences between inodes and hash value β
|
|
mtime
last modified time
|
|
|
name
file or directory name
βοΈ value is case sensitive
|
π name:*report*
β
Returns all files and directories that contain the word report anywhere in their name.
π Matches exact or partial text depending on how the query is written (exact match, wildcard, etc.)
|
|
name.text
full-text search analysis applied to file or directory name, enabling tokenization, stemming, and case-insensitive matching
βοΈ value is not case sensitive
|
π name.text:report
β
Finds files and directories containing report, regardless of case or word position.
π name.text:rep
β
May return results like Report_Q1.pdf or weekly_report.xlsx, even if rep is only part of the word.
π name.text:quarterly report
-
β
Prioritizes phrase matching (words together in order):
Woud find β Quarterly Report.pdf, Quarterly_Report_2025.xlsx
Might find β The Quarterly Report Final.docx (depending on tokenization)
Would likely not find β Report_Quarterly_Draft.pdf (words in different order)
π Enables full-text search on file and directory names, making searches more flexible and forgiving compared to the standard name field.
|
|
nlink
number of hardlinks pointing to a file or directory
|
π nlink:3
β
For files β finds files with 3 hardlinks (i.e., the same file exists in 3 locations or names).
β
For directories β reflects the number of subfolders (each subfolder increases the link count).
|
|
owner
owner name associated to a file or directory
|
π owner:Chris
β
Using owner:Chris finds all files and directories owned by Chris
π Identifies the owner associated with a file or directory. Owner values depend on your system configurationβrefer to the User Analysis Report or consult your System Administrator for details.
|
|
parent_path
full directory path where a file or subdirectory is located
βοΈ value is case sensitive
|
π parent_path:*images*
-
β
Returns all files and directories located in folders whose path contains images:
π Matches exact or partial text depending on how the query is written (exact match, wildcard, etc.)
|
|
parent_path.text
full-text search analysis applied to parent directory paths, enabling tokenization, stemming, and case-insensitive matching
βοΈ value is not case sensitive
|
πparent_path.text:projects
β
Finds files and directories within any path containing projects, regardless of case or position.
π parent_path.text:media
β
May return results like /Media_Archive/film.mov, /projects/media_storage/ or /backup/media-files/, even if media is only part of the folder name.
π parent_path.text:final edits
-
β
Prioritizes phrase matching (words together in order):
Would find β /projects/final edits/scene1.mov or /archives/Final_Edits/
Might find β /storage/final-edits_backup/ or /FinalEdits/scene2.mp4
Would likely not find β /projects/edits_final/ or /backup/final version edits/
π Enables full-text search on directory paths, making searches more flexible and forgiving compared to the standard parent_path field.
|
|
size
total file and/or directory size, including all nested/recursive contents
βοΈ value must be in bytes
|
π size:>32212254720
β
Finds files or directories larger than 30 GB, including everything inside nested folders.
π Counts the total size of a file or directory. For directories, this includes all files and subfolders at any depth. Learn more about how to manually search for data size β
|
|
size_norecurs
size of files directly inside a directory, excluding nested/non-recursive subdirectories
βοΈ value must be in bytes
|
π size_norecurs:>32212254720
β
Finds directories with more than 30 GB of files directly inside them, without counting nested subfolders.
π Counts only the size of files at the top level of a directory. Files inside subfolders are not included. Useful for understanding directory size at a single level. Learn about how to manually search for data size β
|
|
size_du
actual disk usage of a file or directory, including all nested/recursive contents
βοΈ value must be in bytes
|
π size_du:>32212254720
β
Finds files or directories using more than 30 GB of actual disk space, including everything inside nested folders.
π Measures actual disk space used, which may differ from file size because it includes filesystem overhead and allocation. For directories, this includes all files and subfolders at any depth. Learn about how to manually search for data size β
|
|
size_du_norecurs
actual disk usage of files directly inside a directory, excluding nested/non-recursive subdirectories
βοΈ value must be in bytes
|
π size_du_norecurs:>32212254720
β
Finds directories where the files directly inside them use more than 30 GB of actual disk space, without counting nested subfolders.
π Measures actual disk space used at the top level of a directory only. Files inside subfolders are not included. Useful for analyzing disk usage at a single level without deeper folder contents. Learn about how to manually search for data size β
|
|
tags
user-defined labels applied to files or directories
|
π tags:delete
β
Finds all files and directories tagged delete.
π Tags help organize, categorize, and take action on data by adding custom labels to files and directories. Learn about tags β
|
|
type
filter results by file or directory type
βοΈ value must be lowercase
|
|
Comments
0 comments
Please sign in to leave a comment.