EasySign BETA
Digital Signing Tool
Loading...
Searching...
No Matches
FolderEntry.cs
Go to the documentation of this file.
2{
3
7 public abstract class FolderEntry
8 {
14 protected FolderEntry(OSPath fullPath, OSPath root)
15 {
16 FullPath = fullPath;
17 Root = root;
18 }
19
23 public OSPath FullPath { get; }
24
28 public OSPath Path => FullPath - Root;
29
33 protected OSPath Root { get; }
34 }
35}
Represents an abstract base class for folder entries.
Definition FolderEntry.cs:8
FolderEntry(OSPath fullPath, OSPath root)
Initializes a new instance of the FolderEntry class.
OSPath FullPath
Gets the full path of the folder entry.
OSPath Root
Gets the root path of the folder entry.
Represents an operating system path and provides methods for path conversion and manipulation.
Definition OSPath.cs:9