Go find with directory Traversal using Goroutines.
Search files which name contains a certain string (case-insensitive).
It will output each matching file with its full path (and size in bytes if requested)
Sample call:
gofind -search propa /tmp/sandbox
gofind -search contains -size /tmp/sandbox
gofind /tmp/sandbox -search contains
gofind /tmp/sandbox -search contains -size
Parameters:
- search Search string to match in file names (case-insensitive)
- size displays the file size right after the filename
- excludeFile Exclude files/directories whose names contain this string or patterns from a file (case-insensitive)
-
Using
go run
:go run main.go -search=pattern /path/to/directory
This command runs the program directly. Replace
/path/to/directory
with the directory you want to search andpattern
with the string to match in file names. -
Building a binary and then running it:
Build the binary:
go build or specifying the executable name : go build -o gofind main.go
Then execute the binary:
./gofind /path/to/directory -search=pattern
Here specify the root directory to begin the search from and the -search
pattern to filter file names,
-
Directory Traversal with Goroutines:
ThewalkDir
function recursively processes each directory. When it finds a subdirectory, it launches a new goroutine for concurrent traversal. -
Symlink Check:
For each file, before calling os.Stat, the code checks if the entry is a symlink by using the bitwise checkentry.Type() & os.ModeSymlink
. If the file is a symlink, it avoids calling os.Stat and outputs the file path with "symlink" string instead.
This helps avoid usual issues with symlinks (such as cycles or broken links). -
File Size for Regular Files:
If the file is not a symlink and its name matches the search string, os.Stat is called to retrieve the file size, which is then printed along with the file path. -
Channel and WaitGroup:
The matching file information is sent through a channel and printed in the main goroutine. A sync.WaitGroup ensures all goroutines complete before closing the channel.