mod dir;
mod dir_entry;
mod file;
mod read_dir;
pub use dir::Dir;
pub use dir_entry::DirEntry;
pub use file::File;
pub use read_dir::ReadDir;
pub use crate::fs::{DirBuilder, FileType, Metadata, OpenOptions, Permissions};
use camino::{Utf8Path, Utf8PathBuf};
fn from_utf8<P: AsRef<Utf8Path>>(path: P) -> std::io::Result<std::path::PathBuf> {
#[cfg(not(windows))]
let path = {
#[cfg(unix)]
use std::{ffi::OsString, os::unix::ffi::OsStringExt};
#[cfg(target_os = "wasi")]
use std::{ffi::OsString, os::wasi::ffi::OsStringExt};
let string = arf_strings::str_to_host(path.as_ref().as_str())?;
OsString::from_vec(string.into_bytes())
};
#[cfg(windows)]
let path = arf_strings::str_to_host(path.as_ref().as_str())?;
Ok(path.into())
}
fn to_utf8<P: AsRef<std::path::Path>>(path: P) -> std::io::Result<Utf8PathBuf> {
let osstr = path.as_ref().as_os_str();
#[cfg(not(windows))]
{
arf_strings::host_os_str_to_str(osstr)
.map(std::borrow::Cow::into_owned)
.map(Into::into)
}
#[cfg(windows)]
{
arf_strings::host_to_str(osstr).map(Into::into)
}
}