Table of Contents

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 string

The original file path.

DeletedAt DateTime

The timestap when the file was deleted.

MetadataFilePath string

The path of the metadata file in the recycle bin.

BackupFilePath string

The 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

string

DeletedAt

The timestap when the file was deleted.

public DateTime DeletedAt { get; init; }

Property Value

DateTime

MetadataFilePath

The path of the metadata file in the recycle bin.

public string MetadataFilePath { get; init; }

Property Value

string

OriginalFilePath

The original file path.

public string OriginalFilePath { get; init; }

Property Value

string