Class FileOperationsService.FileSystemEntry
Represents an entry within a file system, which can be either a file or a directory. This class provides detailed information about the file system entry, such as its name, full path, attributes, and timestamps.
Inherited Members
Namespace: Coree.NETStandard.Services.FileOperationsManagement
Assembly: Coree.NETStandard.dll
Syntax
public class FileOperationsService.FileSystemEntry
Properties
| Edit this page View SourceAttributes
Gets or sets the attributes associated with the file system entry.
Declaration
public FileAttributes Attributes { get; set; }
Property Value
Type | Description |
---|---|
FileAttributes |
Crc32
Gets or sets the CRC32 checksum of the file, if available.
Declaration
public uint? Crc32 { get; set; }
Property Value
Type | Description |
---|---|
uint? |
EntryDateUtc
Gets or sets the time when the entry was indexed or recorded, expressed in UTC.
Declaration
public DateTimeOffset EntryDateUtc { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Exception
Gets or sets the exception that occurred during the entry processing, if any.
Declaration
public Exception? Exception { get; set; }
Property Value
Type | Description |
---|---|
Exception |
Extension
Gets the file extension of the file system entry, if it is a file. Returns null if the entry is not a file or if no extension is present.
Declaration
[JsonIgnore]
public string? Extension { get; }
Property Value
Type | Description |
---|---|
string |
FullName
Gets or sets the full path of the file system entry.
Declaration
public string? FullName { get; set; }
Property Value
Type | Description |
---|---|
string |
IsDirectory
Determines whether the file system entry is a directory. This property returns true if the 'Directory' attribute is set.
Declaration
[JsonIgnore]
public bool IsDirectory { get; }
Property Value
Type | Description |
---|---|
bool |
IsFile
Determines whether the file system entry is a file. This property returns true if the 'Normal' attribute is set.
Declaration
[JsonIgnore]
public bool IsFile { get; }
Property Value
Type | Description |
---|---|
bool |
LastWriteTimeUtc
Gets or sets the last modification time of the entry, expressed in UTC.
Declaration
public DateTimeOffset LastWriteTimeUtc { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
Length
Gets or sets the size of the file system entry in bytes.
Declaration
public long? Length { get; set; }
Property Value
Type | Description |
---|---|
long? |
Name
Gets or sets the name of the file system entry.
Declaration
public string? Name { get; set; }
Property Value
Type | Description |
---|---|
string |