Table of Contents

Interface IPath

Namespace
TruePath
Assembly
TruePath.dll

Represents a path in a file system.

public interface IPath
Extension Methods

Properties

FileName

The name of the last component of this path.

string FileName { get; }

Property Value

string

Parent

The parent of this path. Will be null for a rooted absolute path. For a relative path, will always resolve to its parent directory — by either removing directories from the end of the path, or appending

..
to the end.
IPath? Parent { get; }

Property Value

IPath

Value

The normalized path string.

string Value { get; }

Property Value

string