Method | Description | |
---|---|---|
GetExtendedAttribute ( string path, string key ) : string |
Retrieves the extended attribute.
|
|
IsFeatureAvailable ( string path ) : bool |
Determines whether Extended Attributes are available on the filesystem.
|
|
ListAttributeKeys ( string path ) : List |
Lists the attribute keys.
|
|
RemoveExtendedAttribute ( string path, string key ) : void |
Removes the extended attribute.
|
|
SetExtendedAttribute ( string path, string key, string value, bool restoreLastModificationDate = false ) : void |
Sets the extended attribute.
|
Method | Description | |
---|---|---|
BackupRead ( SafeFileHandle hFile, |
||
BackupSeek ( SafeFileHandle hFile, uint dwLowBytesToSeek, uint dwHighBytesToSeek, uint &lpdwLowByteSeeked, uint &lpdwHighByteSeeked, |
||
CloseHandle ( |
||
CreateFile ( string name, FileAccess access, FileShare share, |
||
CreateFileHandle ( string path, FileAccess access, FileMode mode, FileShare share ) : SafeFileHandle | ||
CreateFileStream ( string path, FileAccess access, FileMode mode, FileShare share ) : |
||
DeleteFile ( string fileName ) : bool | ||
FormatMessage ( uint dwFlags, |
||
GetKeys ( string path ) : IEnumerable |
||
GetLastErrorMessage ( ) : string | ||
GetStreams ( SafeFileHandle fh ) : IEnumerable |
||
SetExtendedAttributeAndRestoreLastModificationDate ( string path, string key, string value ) : void |
Sets the extended attribute and restore last modification date.
|
public GetExtendedAttribute ( string path, string key ) : string | ||
path | string | Retrrieves attribute of this path. |
key | string | Key of the attribute, which should be retrieved. |
return | string |
public IsFeatureAvailable ( string path ) : bool | ||
path | string | Path to be checked |
return | bool |
public ListAttributeKeys ( string path ) : List |
||
path | string | Path which should be read. |
return | List |
public RemoveExtendedAttribute ( string path, string key ) : void | ||
path | string | Removes attribute from this path. |
key | string | Key of the attribute, which should be removed. |
return | void |
public SetExtendedAttribute ( string path, string key, string value, bool restoreLastModificationDate = false ) : void | ||
path | string | Sets attribute of this path. |
key | string | Key of the attribute, which should be set. |
value | string | The value to set. |
restoreLastModificationDate | bool | |
return | void |