EasySign BETA
Digital Signing Tool
Loading...
Searching...
No Matches
FolderFile.cs
Go to the documentation of this file.
2{
6 public class FolderFile : FolderEntry
7 {
12 public FolderFile(OSPath fullPath)
13 : this(fullPath, OSPath.Empty)
14 {
15 }
16
22 public FolderFile(OSPath fullPath, OSPath root)
23 : base(fullPath, root)
24 {
25 }
26
30 public bool Exists => File.Exists(FullPath);
31 }
32}
Represents an abstract base class for folder entries.
Definition FolderEntry.cs:8
OSPath FullPath
Gets the full path of the folder entry.
Represents a file within a folder in the unified path system.
Definition FolderFile.cs:7
bool Exists
Gets a value indicating whether the file exists at the specified path.
Definition FolderFile.cs:30
FolderFile(OSPath fullPath, OSPath root)
Initializes a new instance of the FolderFile class with the specified full path and root path.
Definition FolderFile.cs:22
FolderFile(OSPath fullPath)
Initializes a new instance of the FolderFile class with the specified full path.
Definition FolderFile.cs:12
Represents an operating system path and provides methods for path conversion and manipulation.
Definition OSPath.cs:9