https://github.com/jeromewu/file-organizer
Organize files within specific folder to yr-mo folders
https://github.com/jeromewu/file-organizer
Last synced: 10 months ago
JSON representation
Organize files within specific folder to yr-mo folders
- Host: GitHub
- URL: https://github.com/jeromewu/file-organizer
- Owner: jeromewu
- License: mit
- Created: 2020-08-05T02:20:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-06T01:16:36.000Z (almost 6 years ago)
- Last Synced: 2025-08-15T15:26:59.088Z (10 months ago)
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# file-organizer
Organize files within specific folder to yr-mo folders
> Only works in Linux
## Usage
```
$ ./file-organizer -i [OPTION]
```
Options:
- `-i ` (required): input folder, subfolder will be scanned as well
- `-o `: output folder, default is **out**
- `-m`: without this flag, the files will be copied, and moved if this flag is on, default is off
## Examples
**Organize files inside Pictures and copy files to out/**
```
$ ./file-organizer -i Pictures
```
**Organize files inside Pictures and copy files to Picture-out/**
```
$ ./file-organizer -i Pictures -o Picture-out
```
**Organize files inside Pictures and move files to Picture-out/**
```
$ ./file-organizer -i Pictures -o Picture-out -m
```