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};
fn from_utf8<P: AsRef<str>>(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())?;
OsString::from_vec(string.into_bytes())
};
#[cfg(windows)]
let path = arf_strings::str_to_host(path.as_ref())?;
Ok(path.into())
}
fn to_utf8<P: AsRef<std::path::Path>>(path: P) -> std::io::Result<String> {
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)
}
#[cfg(windows)]
{
arf_strings::host_to_str(osstr)
}
}