![]() |
BlackBerry Dynamics for .NET Maui
12.1.1.5
Runtime library for .NET Maui applications
|
An interface representing a BBD secure local file system. More...
Public Member Functions | |
string | Combine (string path1, string path2) |
Combines two strings into a path. More... | |
Task< IBBDFileSystem > | BBDRequestFileSystemAsync (ulong requestedSize=0) |
Request a BBD secure file system in which to store application data. IBBDFileSystem class. More... | |
Task< IBBDFileEntry > | BBDResolveLocalFileSystemFileFromPathAsync (string path) |
Gets a BBD secure file entry for given path. IBBDFileEntry class. More... | |
Task< IBBDFileEntry > | BBDResolveLocalFileSystemFileFromFullPathAsync (string fullPath) |
Gets a BBD secure file entry for given full path. Example of full path to exemplary file test.txt:
IBBDFileEntry class. More... | |
Task< IBBDDirectoryEntry > | BBDResolveLocalFileSystemDirectoryFromPathAsync (string path) |
Gets a BBD secure directory entry for given path. IBBDDirectoryEntry class. More... | |
Task< IBBDDirectoryEntry > | BBDResolveLocalFileSystemDirectoryFromFullPathAsync (string fullPath) |
Gets a BBD secure directory entry for given full path. Example of full path to exemplary directory test:
IBBDDirectoryEntry class. More... | |
Properties | |
char | DirectorySeparatorChar [get] |
Gets the directory separator char. More... | |
An interface representing a BBD secure local file system.
Task<IBBDFileSystem> BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDLocalFileSystem.BBDRequestFileSystemAsync | ( | ulong | requestedSize = 0 | ) |
Request a BBD secure file system in which to store application data. IBBDFileSystem class.
Exceptions.BBDFileSystemException | Thrown when can not perform request file system operation. |
requestedSize | Requested size indicates how much storage space, in bytes, the application expects. |
Task<IBBDDirectoryEntry> BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDLocalFileSystem.BBDResolveLocalFileSystemDirectoryFromFullPathAsync | ( | string | fullPath | ) |
Gets a BBD secure directory entry for given full path. Example of full path to exemplary directory test:
IBBDDirectoryEntry class.
Exceptions.BBDFileSystemException | Thrown when can not resolve directory from local file system. |
fullPath | The full path to a BBD secure directory entry. |
Task<IBBDDirectoryEntry> BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDLocalFileSystem.BBDResolveLocalFileSystemDirectoryFromPathAsync | ( | string | path | ) |
Gets a BBD secure directory entry for given path. IBBDDirectoryEntry class.
Exceptions.BBDFileSystemException | Thrown when can not resolve directory from local file system. |
path | The path to a BBD secure directory entry. |
Task<IBBDFileEntry> BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDLocalFileSystem.BBDResolveLocalFileSystemFileFromFullPathAsync | ( | string | fullPath | ) |
Gets a BBD secure file entry for given full path. Example of full path to exemplary file test.txt:
IBBDFileEntry class.
Exceptions.BBDFileSystemException | Thrown when can not resolve file from local file system. |
fullPath | The full path to a BBD secure file entry. |
Task<IBBDFileEntry> BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDLocalFileSystem.BBDResolveLocalFileSystemFileFromPathAsync | ( | string | path | ) |
Gets a BBD secure file entry for given path. IBBDFileEntry class.
Exceptions.BBDFileSystemException | Thrown when can not resolve file from local file system. |
path | The path to a BBD secure file entry. |
string BBDXamarinForms.Common.Interfaces.SecureStorage.IBBDLocalFileSystem.Combine | ( | string | path1, |
string | path2 | ||
) |
Combines two strings into a path.
path1 | Path1. |
path2 | Path2. |
|
get |
Gets the directory separator char.
Provides a platform-specific character used to separate directory levels in a path string that reflects a hierarchical file system organization.