FD

FD

A simple, fast and user-friendly alternative to 'find'

Category
File Search
License
Apache 2
Platforms
Windows
Released
2017
Path
c:\fd\fd.exe
Version
Latest known: 10.4.2 (2026-03-10)

Examples

1. Return all files that contain the string "passwd" within a subdirectory

fd.exe --ignore-case --absolute-path --type=f --color=never --hyperlink=never passwd d:\project\etc

2. Use glob search pattern to find files with exactly the provided search pattern

fd.exe --absolute-path --type=f --color=never --hyperlink=never -g Application.cfc d:\www

3. Search for entries using regex (starts with "x" and end with "rc")

fd.exe --absolute-path --type=f --color=never --hyperlink=never "^x.*rc$"

4. Search and return all files that match the full path. (ColdFusion only returns matched directory names.)

fd.exe --absolute-path --type=f --color=never --hyperlink=never -p -g "**\.git\config"

5. Search full paths. Return all files that match any subdirectory names that start with "\12345-".

fd.exe --ignore-case --absolute-path --full-path --type=f --color=never --hyperlink=never "\\12345\-" "d:\www"

6. Return the paths of all MP3 files smaller than 50 KB. The -S/--size flag accepts a leading minus for 'less than or equal' and units like k/m/g.

fd.exe -e mp3 -c never -S -50k . c:\audio

Try it

Agree to terms to run demos.