├── .all-contributorsrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── artifacts.yaml │ └── rust-core.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── dockerfile ├── media ├── FileSorterX.gif ├── cargo.png ├── exe.png └── filesorterx-logo.png └── src ├── config.rs ├── lib.rs ├── main.rs └── tests.rs /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/artifacts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/.github/workflows/artifacts.yaml -------------------------------------------------------------------------------- /.github/workflows/rust-core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/.github/workflows/rust-core.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .env -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/README.md -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/dockerfile -------------------------------------------------------------------------------- /media/FileSorterX.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/media/FileSorterX.gif -------------------------------------------------------------------------------- /media/cargo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/media/cargo.png -------------------------------------------------------------------------------- /media/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/media/exe.png -------------------------------------------------------------------------------- /media/filesorterx-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/media/filesorterx-logo.png -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zephira58/FileSorterX/HEAD/src/tests.rs --------------------------------------------------------------------------------