API Reference
Class
FileWorkspaceEntry
Summary for a browseable filesystem entry.
Inheritance
- Object
- FileWorkspaceEntry
Constructors
public FileWorkspaceEntry(String Path, String Name, Boolean IsDirectory, Nullable<Int64> SizeBytes, Nullable<DateTime> LastModifiedUtc, Boolean CanBrowse, Boolean CanDownload) #Summary for a browseable filesystem entry.
Parameters
- Path System.String
- Full path to the entry.
- Name System.String
- Display name for the entry.
- IsDirectory System.Boolean
- True when the entry is a directory.
- SizeBytes System.Nullable{System.Int64}
- File size when the entry is a file.
- LastModifiedUtc System.Nullable{System.DateTime}
- Last modification timestamp in UTC when available.
- CanBrowse System.Boolean
- True when the entry can be browsed as a container.
- CanDownload System.Boolean
- True when the entry can be prepared for download/export.
Methods
public FileWorkspaceEntry <Clone>$() #Returns:
FileWorkspaceEntrypublic Void Deconstruct(out String Path, out String Name, out Boolean IsDirectory, out Nullable<Int64> SizeBytes, out Nullable<DateTime> LastModifiedUtc, out Boolean CanBrowse, out Boolean CanDownload) #Returns:
VoidParameters
- Path String
- Name String
- IsDirectory Boolean
- SizeBytes Nullable<Int64>
- LastModifiedUtc Nullable<DateTime>
- CanBrowse Boolean
- CanDownload Boolean
public override Int32 GetHashCode() #Returns:
Int32public override String ToString() #Returns:
StringInherited Methods
Properties
public String Path { get; set; } #Full path to the entry.
public String Name { get; set; } #Display name for the entry.
public Boolean IsDirectory { get; set; } #True when the entry is a directory.
public Nullable<Int64> SizeBytes { get; set; } #File size when the entry is a file.
public Nullable<DateTime> LastModifiedUtc { get; set; } #Last modification timestamp in UTC when available.
public Boolean CanBrowse { get; set; } #True when the entry can be browsed as a container.
public Boolean CanDownload { get; set; } #True when the entry can be prepared for download/export.