![]() |
BlackBerry Dynamics for .NET Maui
12.1.1.5
Runtime library for .NET Maui applications
|
This interface supplies information about the state of a file or directory entry on the BBD secure file system. More...
Public Member Functions | |
bool | CanExecute () |
Call this method to test whether the file or directory entry at the instance's path is executable. Files in the secure store are never executable, some directories can be executable. More... | |
bool | CanRead () |
Call this method to test whether the file or directory entry at the instance's path is readable. Files and directories in the secure store are always readable, so this method only checks for existence. More... | |
bool | CanWrite () |
Call this method to test whether the file or directory entry at the instance's path is writable. Files and directories in the secure store are always writable, so this method only checks for existence. More... | |
Properties | |
DateTime? | CreationDate [get] |
Returns the UTC creation date and time of the specified file or directory entry. More... | |
DateTime? | ModificationDate [get] |
Returns the UTC modification date and time of the specified file or directory entry. More... | |
ulong? | Size [get] |
Returns the size, in bytes, of the specified file or directory entry. More... | |
string | MimeType [get] |
Returns the MIME type of the specified file or directory entry. More... | |
This interface supplies information about the state of a file or directory entry on the BBD secure file system.
bool BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDMetadata.CanExecute | ( | ) |
Call this method to test whether the file or directory entry at the instance's path is executable. Files in the secure store are never executable, some directories can be executable.
false
always for file entries, true
or false
for directory entries.bool BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDMetadata.CanRead | ( | ) |
Call this method to test whether the file or directory entry at the instance's path is readable. Files and directories in the secure store are always readable, so this method only checks for existence.
true
, if the instance's path corresponds to a file or directory entry that exists in the secure store, false
otherwise.bool BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDMetadata.CanWrite | ( | ) |
Call this method to test whether the file or directory entry at the instance's path is writable. Files and directories in the secure store are always writable, so this method only checks for existence.
true
, if the instance's path corresponds to a file or directory entry that exists in the secure store, false
otherwise.
|
get |
Returns the UTC creation date and time of the specified file or directory entry.
A DateTime structure set to the creation date and time for the specified file or directory entry or null. For Android this equals ModificationDate.
|
get |
Returns the MIME type of the specified file or directory entry.
The MIME type associated with file entry extension if specified, generic MIME type otherwise.
|
get |
Returns the UTC modification date and time of the specified file or directory entry.
A DateTime structure set to the modification date and time for the specified file or directory entry or null.
|
get |
Returns the size, in bytes, of the specified file or directory entry.
The size for the specified file entry in bytes or null. Zero (0) for directory entry.