pub struct Fs;
std
only.Implementations§
Source§impl Fs
§Safe methods.
impl Fs
§Safe methods.
Sourcepub fn canonicalize<P: AsRef<Path>>(path: P) -> IoResult<PathBuf>
pub fn canonicalize<P: AsRef<Path>>(path: P) -> IoResult<PathBuf>
Returns the canonical, absolute form of a path with all intermediate components normalized and symbolic links resolved.
See std::sys::
canonicalize
.
Sourcepub fn copy<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> IoResult<u64>
pub fn copy<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> IoResult<u64>
Copies the contents of one file to another. This function will also copy the permission bits of the original file to the destination file.
See std::sys::
copy
.
Sourcepub fn create_dir<P: AsRef<Path>>(path: P) -> IoResult<()>
pub fn create_dir<P: AsRef<Path>>(path: P) -> IoResult<()>
Creates a new, empty directory at the provided path
See std::sys::
create_dir
.
Sourcepub fn create_dir_all<P: AsRef<Path>>(path: P) -> IoResult<()>
pub fn create_dir_all<P: AsRef<Path>>(path: P) -> IoResult<()>
Recursively create a directory and all of its parent components if they are missing.
See std::sys::
create_dir_all
.
Sourcepub fn exists<P: AsRef<Path>>(path: P) -> IoResult<bool>
pub fn exists<P: AsRef<Path>>(path: P) -> IoResult<bool>
Returns Ok(true) if the path points at an existing entity.
See std::sys::
exists
.
Sourcepub fn hard_link<P: AsRef<Path>, Q: AsRef<Path>>(
original: P,
link: Q,
) -> IoResult<()>
pub fn hard_link<P: AsRef<Path>, Q: AsRef<Path>>( original: P, link: Q, ) -> IoResult<()>
Creates a new hard link on the filesystem.
See std::sys::
hard_link
.
Sourcepub fn metadata<P: AsRef<Path>>(path: P) -> IoResult<FileMetadata>
pub fn metadata<P: AsRef<Path>>(path: P) -> IoResult<FileMetadata>
Given a path, queries the file system to get information about a file, directory, etc.
See std::sys::
metadata
.
Sourcepub fn read<P: AsRef<Path>>(path: P) -> IoResult<Vec<u8>>
pub fn read<P: AsRef<Path>>(path: P) -> IoResult<Vec<u8>>
Reads the entire contents of a file into a bytes vector.
See std::sys::
read
.
Sourcepub fn read_dir<P: AsRef<Path>>(path: P) -> IoResult<IterDirRead>
pub fn read_dir<P: AsRef<Path>>(path: P) -> IoResult<IterDirRead>
Returns an iterator over the entries within a directory.
See std::sys::
read_dir
.
Sourcepub fn read_link<P: AsRef<Path>>(path: P) -> IoResult<PathBuf>
pub fn read_link<P: AsRef<Path>>(path: P) -> IoResult<PathBuf>
Reads a symbolic link, returning the file that the link points to.
See std::sys::
read_link
.
Sourcepub fn read_to_string<P: AsRef<Path>>(path: P) -> IoResult<String>
pub fn read_to_string<P: AsRef<Path>>(path: P) -> IoResult<String>
Reads the entire contents of a file into a string.
See std::sys::
read_to_string
.
Sourcepub fn remove_dir<P: AsRef<Path>>(path: P) -> IoResult<()>
pub fn remove_dir<P: AsRef<Path>>(path: P) -> IoResult<()>
Removes an empty directory.
See std::sys::
remove_dir
.
Sourcepub fn remove_dir_all<P: AsRef<Path>>(path: P) -> IoResult<()>
pub fn remove_dir_all<P: AsRef<Path>>(path: P) -> IoResult<()>
Removes a directory at this path, after removing all its contents. Use carefully!
See std::sys::
remove_dir_all
.
Sourcepub fn remove_file<P: AsRef<Path>>(path: P) -> IoResult<()>
pub fn remove_file<P: AsRef<Path>>(path: P) -> IoResult<()>
Removes a file from the filesystem.
See std::sys::
remove_file
.
Sourcepub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> IoResult<()>
pub fn rename<P: AsRef<Path>, Q: AsRef<Path>>(from: P, to: Q) -> IoResult<()>
Renames a file or directory to a new name, replacing the original file if to already exists.
See std::sys::
rename
.
Sourcepub fn set_permissions<P: AsRef<Path>>(
path: P,
perm: FilePermissions,
) -> IoResult<()>
pub fn set_permissions<P: AsRef<Path>>( path: P, perm: FilePermissions, ) -> IoResult<()>
Changes the permissions found on a file or a directory.
See std::sys::
set_permissions
.
Sourcepub fn symlink_metadata<P: AsRef<Path>>(path: P) -> IoResult<FileMetadata>
pub fn symlink_metadata<P: AsRef<Path>>(path: P) -> IoResult<FileMetadata>
Queries the metadata about a file without following symlinks.
See std::sys::
symlink_metadata
.
Auto Trait Implementations§
impl Freeze for Fs
impl RefUnwindSafe for Fs
impl Send for Fs
impl Sync for Fs
impl Unpin for Fs
impl UnwindSafe for Fs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more