Class RecycleBinEntry
- Namespace
- WindowsRecylceBin
- Assembly
- WindowsRecylceBin.dll
Represents an entry of the Windows recycle bin.
public record RecycleBinEntry : IEquatable<RecycleBinEntry>
- Inheritance
-
RecycleBinEntry
- Implements
- Inherited Members
Constructors
RecycleBinEntry(string, DateTime, string, string)
Represents an entry of the Windows recycle bin.
public RecycleBinEntry(string OriginalFilePath, DateTime DeletedAt, string MetadataFilePath, string BackupFilePath)
Parameters
OriginalFilePath
stringThe original file path.
DeletedAt
DateTimeThe timestap when the file was deleted.
MetadataFilePath
stringThe path of the metadata file in the recycle bin.
BackupFilePath
stringThe path of the backup file in the recycle bin.
Properties
BackupFilePath
The path of the backup file in the recycle bin.
public string BackupFilePath { get; init; }
Property Value
DeletedAt
The timestap when the file was deleted.
public DateTime DeletedAt { get; init; }
Property Value
MetadataFilePath
The path of the metadata file in the recycle bin.
public string MetadataFilePath { get; init; }
Property Value
OriginalFilePath
The original file path.
public string OriginalFilePath { get; init; }