33 lines
715 B
Markdown
33 lines
715 B
Markdown
# How to use
|
|
|
|
```bash
|
|
> .\FileOrganizer.exe --help
|
|
|
|
FileOrganizer 1.0.0
|
|
Copyright (C) 2024 FileOrganizer
|
|
|
|
-i, --input Required. input directory path.
|
|
|
|
-o, --output Required. output directory path.
|
|
|
|
--help Display this help screen.
|
|
|
|
--version Display version information.
|
|
```
|
|
|
|
`input directory`의 모든 파일에서
|
|
|
|
1. Read exif data (0x0132 > 0x9003 > 0x9004)
|
|
2. File Create Date 기준
|
|
|
|
`outputpath/yyyy/mm` 경로에 저장됩니다.
|
|
|
|
# EXIF Tag
|
|
|
|
| TagID | TagName | TagValue |
|
|
| --- | --- | --- |
|
|
| 0x0132 | ModifyDate | YYYY:MM:DD HH:MM:SS |
|
|
| 0x9003 | DateTimeOriginal | YYYY:MM:DD HH:MM:SS |
|
|
| 0x9004 | CreateDate | YYYY:MM:DD HH:MM:SS |
|
|
|
|
[reference](https://exiftool.org/TagNames/EXIF.html) |