Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 1 month 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T03:36:33.000Z (almost 4 years ago)
- Last Synced: 2024-10-20T07:34:16.213Z (3 months 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
# 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" > .resultsreal 0m4.456s
user 0m0.000s
sys 0m0.016s
```