file-organizer-lib 0.1.0

A library for organizing files by their extensions
Documentation
  • Coverage
  • 0%
    0 out of 7 items documented0 out of 3 items with examples
  • Size
  • Source code size: 15.39 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 493.99 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 16s Average build duration of successful builds.
  • all releases: 16s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Audyari

File Organizer Library

Library untuk mengorganisir file berdasarkan ekstensi.

Fitur

  • Kategorisasi file berdasarkan ekstensi
  • Pemindahan file otomatis
  • Mendukung operasi rekursif

Penggunaan

use file_organizer_lib::{categorize_files, organize_file};

let files = categorize_files("./downloads", true)?;
let result = organize_file("file.txt", "./organized")?;