https://github.com/selfup/filesizefinder
Find files, big or small. Much faster than File Explorer in Windows. (Works on linux/mac too!)
https://github.com/selfup/filesizefinder
Last synced: 9 months ago
JSON representation
Find files, big or small. Much faster than File Explorer in Windows. (Works on linux/mac too!)
- Host: GitHub
- URL: https://github.com/selfup/filesizefinder
- Owner: selfup
- License: mit
- Created: 2019-08-16T04:41:00.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T03:36:33.000Z (over 5 years ago)
- Last Synced: 2024-11-22T00:33:53.211Z (over 1 year ago)
- Language: Go
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ARCHIVED
### Successor lives on!
Please use [scnnr](https://github.com/selfup/scnnr) which has this mode built-in!
scnnr: https://github.com/selfup/scnnr
# File Size Finder
Find files, big or small. Much faster than File Explorer in Windows.
Was built to clean up SSDs.
### Install
```
go get github.com/selfup/filesizefinder
go install github.com/selfup/filesizefinder
```
### Help
```
$ filesizefinder -h
Usage of filesizefinder:
-d string
directory to start scanning recursively from
-s string
size: 1MB,10MB,100MB,1GB,10GB,100GB,1TB
```
### Use
**Windows**
`filesizefinder -s=1GB -d="C:\\Users"`
OR
`filesizefinder -s 1GB -d "C:\\Users"`
**Unix/Linux**
`filesizefinder -s 1GB -d"$HOME"`
OR
`filesizefinder -s=1GB -d="$HOME"`
### Output
New line delimited file paths
Example on Windows:
```
$ filesizefinder -s=1GB -d="C:\\Users"
C:\Users\selfup\Videos\2019-08-15 18-26-12.flv
C:\Users\selfup\Videos\OBS\2019-08-12_12-10-46.flv
```
### Performance
```
$ time filesizefinder.exe -s 1GB -d "C:\\Users" > .results
real 0m4.456s
user 0m0.000s
sys 0m0.016s
```