pub struct FsPath {
pub path: PathBuf,
}
std
only.Expand description
🌐
A more featureful wrapper over PathBuf
.
§Table of contents
- General methods
- Methods that traverse symbolic links
- Methods that optionally traverse symbolic links
unix
methods that traverse symbolic linksunix
methods that optionally traverse symbolic linkswindows
methods
§Symlink traversal
Most methods traverse symbolic links along the path,
while the _ts
suffixed variants can do so, optionally.
assert_eq![some_path.exists(), some_path.exists_ts(true)];
Fields§
§path: PathBuf
The inner PathBuf
.
Implementations§
Source§impl FsPath
§General methods.
impl FsPath
§General methods.
Sourcepub fn from_current_dir() -> IoResult<Self>
pub fn from_current_dir() -> IoResult<Self>
Returns the current working directory.
Calls std::env::
current_dir
under the hood.
Sourcepub fn from_manifest_dir() -> Self
pub fn from_manifest_dir() -> Self
Retuns the path of CARGO_MANIFEST_DIR
.
Sourcepub fn from_manifest_path() -> Self
pub fn from_manifest_path() -> Self
Retuns the path of CARGO_MANIFEST_PATH
.
Sourcepub fn from_temp_dir() -> Self
pub fn from_temp_dir() -> Self
Returns a temporary directory.
Calls std::env::
temp_dir
under the hood.
Sourcepub fn from_crate_root<P: AsRef<Path>>(path: P) -> IoResult<Self>
pub fn from_crate_root<P: AsRef<Path>>(path: P) -> IoResult<Self>
Resolves a given path relative to the nearest Cargo.toml
directory.
This function searches for the nearest Cargo.toml
file starting from the
current working directory and traversing upwards through its ancestors.
Once the Cargo.toml
is found, the provided path
is appended to its directory.
§Errors
Returns an error if it can’t find any Cargo.toml
file,
or if it encounters an invalid path during the search process.
§Examples
use devela::FsPath;
match FsPath::from_crate_root("") {
Ok(p) => println!("Current crate root is {:?}", p),
Err(e) => println!("Error obtaining crate root {:?}", e)
};
Sourcepub fn canonicalize(&self) -> IoResult<FsPath>
pub fn canonicalize(&self) -> IoResult<FsPath>
Returns the canonical, absolute form of the path with all intermediate components normalized and symbolic links resolved.
Calls std::fs::
canonicalize
under the hood.
Sourcepub fn read_link(&self) -> IoResult<FsPath>
pub fn read_link(&self) -> IoResult<FsPath>
Reads a symbolic link, returning the file that the link points to.
This function will return an error in the following situations, but is not limited to just these cases:
- path is not a symbolic link.
- path does not exist.
Calls std::fs::
read_link
under the hood.
Sourcepub fn is_absolute(&self) -> bool
pub fn is_absolute(&self) -> bool
Is this path absolute?
Sourcepub fn is_relative(&self) -> bool
pub fn is_relative(&self) -> bool
Is this path relative?
Sourcepub fn parent(&self) -> Option<FsPath> ⓘ
pub fn parent(&self) -> Option<FsPath> ⓘ
Returns the path without its final component, if there is one.
Returns None
if the path terminates in a root or prefix.
Sourcepub fn pop(&mut self) -> bool
pub fn pop(&mut self) -> bool
Truncates self
to self.parent
.
Returns false
and does nothing if self.parent
is None
.
Otherwise, returns true
.
Sourcepub fn push<P: AsRef<Path>>(&mut self, path: P)
pub fn push<P: AsRef<Path>>(&mut self, path: P)
Extends self
with path
.
If path
is absolute, it replaces the current path.
Calls std::path::
PathBuf::push
under the hood.
Sourcepub fn display(&self) -> PathDisplay<'_>
pub fn display(&self) -> PathDisplay<'_>
Returns an object that implements Display
.
Sourcepub fn to_string_lossy(&self) -> Cow<'_, str>
pub fn to_string_lossy(&self) -> Cow<'_, str>
Converts a FsPath
to a Cow<str>
.
Any non-Unicode sequences are replaced with U+FFFD REPLACEMENT CHARACTER
.
Sourcepub fn into_inner(self) -> PathBuf ⓘ
pub fn into_inner(self) -> PathBuf ⓘ
Returns the inner PathBuf
.
Sourcepub fn into_ref_mut(&mut self) -> &mut PathBuf ⓘ
pub fn into_ref_mut(&mut self) -> &mut PathBuf ⓘ
Returns an exclusive reference to the inner PathBuf
.
Source§impl FsPath
§Methods that traverse symbolic links
impl FsPath
§Methods that traverse symbolic links
Sourcepub fn is_symlink(&self) -> bool
pub fn is_symlink(&self) -> bool
Is this a symbolic link?
Sourcepub fn metadata(&self) -> IoResult<FileMetadata>
pub fn metadata(&self) -> IoResult<FileMetadata>
Returns the metadata.
Sourcepub fn created(&self) -> IoResult<SystemTime>
pub fn created(&self) -> IoResult<SystemTime>
Returns the time of creation.
Sourcepub fn accessed(&self) -> IoResult<SystemTime>
pub fn accessed(&self) -> IoResult<SystemTime>
Returns the time of access.
Sourcepub fn modified(&self) -> IoResult<SystemTime>
pub fn modified(&self) -> IoResult<SystemTime>
Returns the time of modification.
Sourcepub fn permissions(&self) -> IoResult<FilePermissions>
pub fn permissions(&self) -> IoResult<FilePermissions>
Returns the permissions of the file.
Sourcepub fn is_readonly(&self) -> IoResult<bool>
pub fn is_readonly(&self) -> IoResult<bool>
Is this a read-only file?
Sourcepub fn set_readonly(&mut self, readonly: bool) -> IoResult<bool>
pub fn set_readonly(&mut self, readonly: bool) -> IoResult<bool>
Sets the read-only flag, returning the previous read-only state.
Source§impl FsPath
§Methods that optionally
impl FsPath
§Methods that optionally
Sourcepub fn is_file_ts(&self, traverse: bool) -> bool
pub fn is_file_ts(&self, traverse: bool) -> bool
Is this a file?
Sourcepub fn is_symlink_ts(&self, traverse: bool) -> bool
pub fn is_symlink_ts(&self, traverse: bool) -> bool
Is this a symbolic link?
Sourcepub fn metadata_ts(&self, traverse: bool) -> IoResult<FileMetadata>
pub fn metadata_ts(&self, traverse: bool) -> IoResult<FileMetadata>
Returns the metadata that optionally traverses symbolic links.
Sourcepub fn file_type_ts(&self, traverse: bool) -> IoResult<FileType>
pub fn file_type_ts(&self, traverse: bool) -> IoResult<FileType>
Returns the FileType
.
Sourcepub fn is_empty_ts(&self, traverse: bool) -> IoResult<bool>
pub fn is_empty_ts(&self, traverse: bool) -> IoResult<bool>
Returns true if the file size equals zero.
Sourcepub fn created_ts(&self, traverse: bool) -> IoResult<SystemTime>
pub fn created_ts(&self, traverse: bool) -> IoResult<SystemTime>
Returns the time of creation.
Sourcepub fn accessed_ts(&self, traverse: bool) -> IoResult<SystemTime>
pub fn accessed_ts(&self, traverse: bool) -> IoResult<SystemTime>
Returns the time of access.
Sourcepub fn modified_ts(&self, traverse: bool) -> IoResult<SystemTime>
pub fn modified_ts(&self, traverse: bool) -> IoResult<SystemTime>
Returns the time of modification.
Sourcepub fn permissions_ts(&self, traverse: bool) -> IoResult<FilePermissions>
pub fn permissions_ts(&self, traverse: bool) -> IoResult<FilePermissions>
Returns the permissions of the file.
Sourcepub fn is_readonly_ts(&self, traverse: bool) -> IoResult<bool>
pub fn is_readonly_ts(&self, traverse: bool) -> IoResult<bool>
Is this a read-only file?
Source§impl FsPath
§unix
methods that traverse symbolic links
impl FsPath
§unix
methods that traverse symbolic links
Sourcepub fn rdev(&self) -> IoResult<u64>
pub fn rdev(&self) -> IoResult<u64>
Returns the device ID of this file (if it is a special one).
Sourcepub fn atime(&self) -> IoResult<i64>
pub fn atime(&self) -> IoResult<i64>
Returns the last access time of the file, in seconds since Unix Epoch.
Sourcepub fn atime_nsec(&self) -> IoResult<i64>
pub fn atime_nsec(&self) -> IoResult<i64>
Returns the last access time of the file, in nanoseconds since atime.
Sourcepub fn mtime(&self) -> IoResult<i64>
pub fn mtime(&self) -> IoResult<i64>
Returns the last modification time of the file, in seconds since Unix Epoch.
Sourcepub fn mtime_nsec(&self) -> IoResult<i64>
pub fn mtime_nsec(&self) -> IoResult<i64>
Returns the last modification time of the file, in nanoseconds since mtime.
Sourcepub fn ctime(&self) -> IoResult<i64>
pub fn ctime(&self) -> IoResult<i64>
Returns the last status change time of the file, in seconds since Unix Epoch.
Sourcepub fn ctime_nsec(&self) -> IoResult<i64>
pub fn ctime_nsec(&self) -> IoResult<i64>
Returns the last status change time of the file, in nanoseconds since ctime.
Source§impl FsPath
§unix
methods that optionally
impl FsPath
§unix
methods that optionally
Sourcepub fn dev_ts(&self, traverse: bool) -> IoResult<u64>
pub fn dev_ts(&self, traverse: bool) -> IoResult<u64>
Returns the ID of the device containing the file.
Sourcepub fn mode_ts(&self, traverse: bool) -> IoResult<u32>
pub fn mode_ts(&self, traverse: bool) -> IoResult<u32>
Returns the rights applied to this file.
Sourcepub fn nlink_ts(&self, traverse: bool) -> IoResult<u64>
pub fn nlink_ts(&self, traverse: bool) -> IoResult<u64>
Returns the number of hard links pointing to this file.
Sourcepub fn uid_ts(&self, traverse: bool) -> IoResult<u32>
pub fn uid_ts(&self, traverse: bool) -> IoResult<u32>
Returns the user ID of the owner of this file.
Sourcepub fn gid_ts(&self, traverse: bool) -> IoResult<u32>
pub fn gid_ts(&self, traverse: bool) -> IoResult<u32>
Returns the group ID of the owner of this file.
Sourcepub fn rdev_ts(&self, traverse: bool) -> IoResult<u64>
pub fn rdev_ts(&self, traverse: bool) -> IoResult<u64>
Returns the device ID of this file (if it is a special one).
Sourcepub fn size_ts(&self, traverse: bool) -> IoResult<u64>
pub fn size_ts(&self, traverse: bool) -> IoResult<u64>
Returns the total size of this file in bytes.
Sourcepub fn atime_ts(&self, traverse: bool) -> IoResult<i64>
pub fn atime_ts(&self, traverse: bool) -> IoResult<i64>
Returns the last access time of the file, in seconds since Unix Epoch.
Sourcepub fn atime_nsec_ts(&self, traverse: bool) -> IoResult<i64>
pub fn atime_nsec_ts(&self, traverse: bool) -> IoResult<i64>
Returns the last access time of the file, in nanoseconds since atime.
Sourcepub fn mtime_ts(&self, traverse: bool) -> IoResult<i64>
pub fn mtime_ts(&self, traverse: bool) -> IoResult<i64>
Returns the last modification time of the file, in seconds since Unix Epoch.
Sourcepub fn mtime_nsec_ts(&self, traverse: bool) -> IoResult<i64>
pub fn mtime_nsec_ts(&self, traverse: bool) -> IoResult<i64>
Returns the last modification time of the file, in nanoseconds since mtime.
Sourcepub fn ctime_ts(&self, traverse: bool) -> IoResult<i64>
pub fn ctime_ts(&self, traverse: bool) -> IoResult<i64>
Returns the last status change time of the file, in seconds since Unix Epoch.
Sourcepub fn ctime_nsec_ts(&self, traverse: bool) -> IoResult<i64>
pub fn ctime_nsec_ts(&self, traverse: bool) -> IoResult<i64>
Returns the last status change time of the file, in nanoseconds since ctime.
Sourcepub fn blksize_ts(&self, traverse: bool) -> IoResult<u64>
pub fn blksize_ts(&self, traverse: bool) -> IoResult<u64>
Returns the block size for filesystem I/O.
Source§impl FsPath
§windows
methods
impl FsPath
§windows
methods
Sourcepub fn file_attributes(&self) -> IoResult<u32>
pub fn file_attributes(&self) -> IoResult<u32>
Returns the value of the dwFileAttributes field of this metadata.
Sourcepub fn creation_time(&self) -> IoResult<u64>
pub fn creation_time(&self) -> IoResult<u64>
Returns the value of the ftCreationTime field of this metadata.
Sourcepub fn last_access_time(&self) -> IoResult<u64>
pub fn last_access_time(&self) -> IoResult<u64>
Returns the value of the ftLastAccessTime field of this metadata.
Sourcepub fn last_write_time(&self) -> IoResult<u64>
pub fn last_write_time(&self) -> IoResult<u64>
Returns the value of the ftLastWriteTime field of this metadata.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FsPath
impl RefUnwindSafe for FsPath
impl Send for FsPath
impl Sync for FsPath
impl Unpin for FsPath
impl UnwindSafe for FsPath
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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