fpls_lib 0.1.2

复制文件或文件夹
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 1 items with examples
  • Size
  • Source code size: 1.75 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 988.59 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • LgnMs/fpls
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • LgnMs

fpls

说明

复制文件/文件夹

使用

use fpls_lib::*;
fn main() -> Result<(), io::Error> {
    let path = Path::new("./test/copy_origion");
    let output_path = Path::new("./test/copy_currnet");
    copy_file(&path, &output_path)?;
    Ok(())
}

运行

cargo run