2019-03-29 15:57:14 -07:00
|
|
|
#![allow(dead_code)] // not used on all platforms
|
|
|
|
|
|
|
|
|
|
use crate::fs;
|
|
|
|
|
use crate::io::{self, Error, ErrorKind};
|
2019-11-27 10:29:00 -08:00
|
|
|
use crate::path::Path;
|
2019-03-29 15:57:14 -07:00
|
|
|
|
2021-03-27 01:21:35 +08:00
|
|
|
pub(crate) const NOT_FILE_ERROR: Error = Error::new_const(
|
|
|
|
|
ErrorKind::InvalidInput,
|
|
|
|
|
&"the source path is neither a regular file nor a symlink to a regular file",
|
|
|
|
|
);
|
|
|
|
|
|
2019-03-29 15:57:14 -07:00
|
|
|
pub fn copy(from: &Path, to: &Path) -> io::Result<u64> {
|
2021-01-05 18:00:38 -08:00
|
|
|
let mut reader = fs::File::open(from)?;
|
|
|
|
|
let metadata = reader.metadata()?;
|
|
|
|
|
|
|
|
|
|
if !metadata.is_file() {
|
2021-03-27 01:21:35 +08:00
|
|
|
return Err(NOT_FILE_ERROR);
|
2019-03-29 15:57:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let mut writer = fs::File::create(to)?;
|
2021-01-05 18:00:38 -08:00
|
|
|
let perm = metadata.permissions();
|
2019-03-29 15:57:14 -07:00
|
|
|
|
|
|
|
|
let ret = io::copy(&mut reader, &mut writer)?;
|
2021-01-05 18:00:38 -08:00
|
|
|
writer.set_permissions(perm)?;
|
2019-03-29 15:57:14 -07:00
|
|
|
Ok(ret)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn remove_dir_all(path: &Path) -> io::Result<()> {
|
|
|
|
|
let filetype = fs::symlink_metadata(path)?.file_type();
|
2019-11-27 10:29:00 -08:00
|
|
|
if filetype.is_symlink() { fs::remove_file(path) } else { remove_dir_all_recursive(path) }
|
2019-03-29 15:57:14 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn remove_dir_all_recursive(path: &Path) -> io::Result<()> {
|
|
|
|
|
for child in fs::read_dir(path)? {
|
|
|
|
|
let child = child?;
|
|
|
|
|
if child.file_type()?.is_dir() {
|
|
|
|
|
remove_dir_all_recursive(&child.path())?;
|
|
|
|
|
} else {
|
|
|
|
|
fs::remove_file(&child.path())?;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
fs::remove_dir(path)
|
|
|
|
|
}
|