pub type ObjectStorePath = Path;
polars-io
only.Aliased Type§
struct ObjectStorePath { /* private fields */ }
Implementations
§impl Path
impl Path
pub fn parse(path: impl AsRef<str>) -> Result<Path, Error>
pub fn parse(path: impl AsRef<str>) -> Result<Path, Error>
Parse a string as a [Path
], returning a [Error
] if invalid,
as defined on the docstring for [Path
]
Note: this will strip any leading /
or trailing /
pub fn from_filesystem_path(path: impl AsRef<Path>) -> Result<Path, Error>
Available on non-WebAssembly only.
pub fn from_filesystem_path(path: impl AsRef<Path>) -> Result<Path, Error>
Convert a filesystem path to a [Path
] relative to the filesystem root
This will return an error if the path contains illegal character sequences
as defined on the docstring for [Path
] or does not exist
Note: this will canonicalize the provided path, resolving any symlinks
pub fn from_absolute_path(path: impl AsRef<Path>) -> Result<Path, Error>
Available on non-WebAssembly only.
pub fn from_absolute_path(path: impl AsRef<Path>) -> Result<Path, Error>
Convert an absolute filesystem path to a [Path
] relative to the filesystem root
This will return an error if the path contains illegal character sequences,
as defined on the docstring for [Path
], or base
is not an absolute path
pub fn from_url_path(path: impl AsRef<str>) -> Result<Path, Error>
pub fn from_url_path(path: impl AsRef<str>) -> Result<Path, Error>
Parse a url encoded string as a [Path
], returning a [Error
] if invalid
This will return an error if the path contains illegal character sequences
as defined on the docstring for [Path
]
pub fn filename(&self) -> Option<&str>
pub fn filename(&self) -> Option<&str>
Returns the last path segment containing the filename stored in this [Path
]
pub fn extension(&self) -> Option<&str>
pub fn extension(&self) -> Option<&str>
Returns the extension of the file stored in this [Path
], if any
pub fn prefix_match(
&self,
prefix: &Path,
) -> Option<impl Iterator<Item = PathPart<'_>>>
pub fn prefix_match( &self, prefix: &Path, ) -> Option<impl Iterator<Item = PathPart<'_>>>
Returns an iterator of the [PathPart
] of this [Path
] after prefix
Returns None
if the prefix does not match
pub fn prefix_matches(&self, prefix: &Path) -> bool
pub fn prefix_matches(&self, prefix: &Path) -> bool
Returns true if this [Path
] starts with prefix