https://github.com/rafaelsales/file-rotator
File rotator - monitors directory size and removes old files
https://github.com/rafaelsales/file-rotator
disk-cleaner disk-space file-rotate golang log-rotate monitor
Last synced: 4 months ago
JSON representation
File rotator - monitors directory size and removes old files
- Host: GitHub
- URL: https://github.com/rafaelsales/file-rotator
- Owner: rafaelsales
- License: mit
- Created: 2017-08-25T06:55:53.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-01-19T22:58:02.000Z (over 6 years ago)
- Last Synced: 2025-06-04T22:28:02.234Z (about 1 year ago)
- Topics: disk-cleaner, disk-space, file-rotate, golang, log-rotate, monitor
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# File Rotator (old name Street-Sweeper)
File Rotator is a program that monitors a directory and removes old files whenever the storage use meets certain condition.
# Usage and examples
* When the directory `/var/lib/motion` has used more than 1GB, delete oldest video files until it only has 500MB used.
```
pi@raspberrypi:/var/lib/motion $ ~/streetsweeper 1GB 500MB /var/lib/motion
2017/08/25 08:12:57 Initializing. Path: /var/lib/motion | Max size: 1073741824 | Target size: 524288000
2017/08/25 08:12:57 Path: /var/lib/motion | Current size: 1179781545
2017/08/25 08:12:57 Path: /var/lib/motion | Over max size - Current size: 524288425 | Max size: 1073741824
2017/08/25 08:15:35 Write detected: /var/lib/motion/01-20170825083251.avi
2017/08/25 08:15:35 Deleting: /var/lib/motion/01-20170807042950-01.jpg | Modified at: 2017-08-07 04:31:14.154876893 +0000 UTC | Size: 60372
2017/08/25 08:15:35 Deleting: /var/lib/motion/02-20170807043341-01.jpg | Modified at: 2017-08-07 04:34:57.175492342 +0000 UTC | Size: 57898
2017/08/25 08:15:35 Deleting: /var/lib/motion/03-20170807045241-00.jpg | Modified at: 2017-08-07 04:53:46.317611474 +0000 UTC | Size: 62855
...
2017/08/25 08:15:35 Deleting: /var/lib/motion/334-20170815154704-06.jpg | Modified at: 2017-08-15 15:48:04.145820372 +0000 UTC | Size: 83145
2017/08/25 08:15:35 Deleting: /var/lib/motion/335-20170815154849.avi | Modified at: 2017-08-15 15:49:49.075832118 +0000 UTC | Size: 756396
2017/08/25 08:15:35 Deleted a total of 65575992
```