FilePath

Struct FilePath 

Source
pub struct FilePath(/* private fields */);
Expand description

A validated virtual filesystem path.

FilePath ensures paths use Unix-style conventions on all platforms:

  • Must start with ‘/’ (absolute paths only)
  • Free of parent directory references (‘..’)
  • Use forward slashes as separators

This is intentional: VFS paths are platform-independent and always use Unix conventions, even on Windows. This enables consistent path handling across development machines and CI environments.

§Examples

use mcp_execution_files::FilePath;

let path = FilePath::new("/mcp-tools/servers/test/file.ts").unwrap();
assert_eq!(path.as_str(), "/mcp-tools/servers/test/file.ts");
use mcp_execution_files::FilePath;

// Invalid paths are rejected
assert!(FilePath::new("relative/path").is_err());
assert!(FilePath::new("/parent/../escape").is_err());

On Windows, Unix-style paths like “/mcp-tools/servers/test” are accepted (not Windows paths like “C:\mcp-tools\servers\test”).

Implementations§

Source§

impl FilePath

Source

pub fn new(path: impl AsRef<Path>) -> Result<Self>

Creates a new FilePath from a path-like type.

The path must be absolute (start with ‘/’) and must not contain parent directory references (‘..’).

FilePath uses Unix-style path conventions on all platforms, ensuring consistent behavior on Linux, macOS, and Windows. Paths are validated using string-based checks rather than platform-specific Path::is_absolute(), which enables cross-platform compatibility.

§Errors

Returns FilesError::PathNotAbsolute if the path does not start with ‘/’. Returns FilesError::InvalidPathComponent if the path contains ‘..’. Returns FilesError::InvalidPath if the path is empty or not UTF-8 valid.

§Examples
use mcp_execution_files::FilePath;

let path = FilePath::new("/mcp-tools/test.ts")?;
assert_eq!(path.as_str(), "/mcp-tools/test.ts");

// Works on all platforms (Unix-style paths)
let path = FilePath::new("/mcp-tools/servers/test/manifest.json")?;
Source

pub fn as_path(&self) -> &Path

Returns the path as a Path reference.

§Examples
use mcp_execution_files::FilePath;

let vfs_path = FilePath::new("/test.ts")?;
let path = vfs_path.as_path();
assert_eq!(path.to_str(), Some("/test.ts"));
Source

pub fn as_str(&self) -> &str

Returns the path as a string slice.

§Examples
use mcp_execution_files::FilePath;

let path = FilePath::new("/mcp-tools/file.ts")?;
assert_eq!(path.as_str(), "/mcp-tools/file.ts");
Source

pub fn parent(&self) -> Option<Self>

Returns the parent directory of this path.

Returns None if this is the root path.

§Examples
use mcp_execution_files::FilePath;

let path = FilePath::new("/mcp-tools/servers/test.ts")?;
let parent = path.parent().unwrap();
assert_eq!(parent.as_str(), "/mcp-tools/servers");
Source

pub fn is_dir_path(&self) -> bool

Checks if this path is a directory path.

A path is considered a directory if it does not have a file extension.

§Examples
use mcp_execution_files::FilePath;

let dir = FilePath::new("/mcp-tools/servers")?;
assert!(dir.is_dir_path());

let file = FilePath::new("/mcp-tools/manifest.json")?;
assert!(!file.is_dir_path());

Trait Implementations§

Source§

impl AsRef<Path> for FilePath

Source§

fn as_ref(&self) -> &Path

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for FilePath

Source§

fn clone(&self) -> FilePath

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for FilePath

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for FilePath

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for FilePath

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for FilePath

Source§

fn eq(&self, other: &FilePath) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for FilePath

Source§

impl StructuralPartialEq for FilePath

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more