Class FileOperationsService.FileSystemInformation
Represents detailed information about a specific file system location, including its entries and statuses related to operations performed on these entries.
Inherited Members
Namespace: Coree.NETStandard.Services.FileOperationsManagement
Assembly: Coree.NETStandard.dll
Syntax
public class FileOperationsService.FileSystemInformation
Properties
| Edit this page View SourceCanceled
Gets a list of file system entries where the operations were canceled. This property filters entries with exceptions specifically marked as OperationCanceledException.
Declaration
[JsonIgnore]
public List<FileOperationsService.FileSystemEntry> Canceled { get; }
Property Value
Type | Description |
---|---|
List<FileOperationsService.FileSystemEntry> |
CreatedDateUtc
Gets or sets the UTC date and time when the file system information was created.
Declaration
public DateTimeOffset CreatedDateUtc { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Errors
Gets a list of file system entries that encountered exceptions, excluding those caused by operation cancellations.
Declaration
[JsonIgnore]
public List<FileOperationsService.FileSystemEntry> Errors { get; }
Property Value
Type | Description |
---|---|
List<FileOperationsService.FileSystemEntry> |
FileSystemEntries
Gets or sets the list of file system entries at the specified path.
Declaration
public List<FileOperationsService.FileSystemEntry> FileSystemEntries { get; set; }
Property Value
Type | Description |
---|---|
List<FileOperationsService.FileSystemEntry> |
HasErrors
Determines whether any file system entries encountered errors during processing, excluding operation cancellations.
Declaration
[JsonIgnore]
public bool HasErrors { get; }
Property Value
Type | Description |
---|---|
bool |
Ok
Gets a list of file system entries that did not encounter any exceptions during processing.
Declaration
[JsonIgnore]
public List<FileOperationsService.FileSystemEntry> Ok { get; }
Property Value
Type | Description |
---|---|
List<FileOperationsService.FileSystemEntry> |
Path
Gets or sets the path of the file system location.
Declaration
public string? Path { get; set; }
Property Value
Type | Description |
---|---|
string |