https://github.com/secure-77/cleanuptool
Simple tool to delete files or folders older then [specified days]
https://github.com/secure-77/cleanuptool
Last synced: over 1 year ago
JSON representation
Simple tool to delete files or folders older then [specified days]
- Host: GitHub
- URL: https://github.com/secure-77/cleanuptool
- Owner: secure-77
- Created: 2020-06-30T18:23:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-30T20:54:04.000Z (about 6 years ago)
- Last Synced: 2025-01-27T23:19:21.100Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CleanUpTool
Simple tool to delete files or folders older then [specified days]
```
Usage: CleanUpTool.exe [OPTIONS]+ path
delete files or folders older then x days
Options:
-m, --mode=MODE operation mode (MODE= file or folder)
-f, --filter=FILTER Wildcard FILTER (e.g. '*.pdf' for all pdf files
or '*' for all folders)
-d, --days=VALUE days
--debug debug mode
-h, --help show this help
```
Examples:
Deleting all pdf files older then 4 days in C:\Temp
```CleanUpTool.exe --mode=file -d=4 -f=*.pdf C:\Temp```
Deleting all folders (including content) older then 7 days in C:\Trash
```CleanUpTool.exe --mode=folder -d=7 C:\Trash```
Download latest Release: https://github.com/secure-77/CleanUpTool/files/4854366/CleanUpTool_1_0.zip