You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| FileExistsAsync(StorageFolder, String, Boolean) | Task<bool>| Gets a value indicating whether a file exists in the current folder |
81
-
| IsFileNameValid(String) | bool | Gets a value indicating whether a filename is correct or not using the Storage feature |
82
-
| IsFilePathValid(String) | bool | Gets a value indicating whether a file path is correct or not using the Storage feature |
83
-
| ReadBytesAsync(StorageFile) | Task<byte[]>| Gets an array of bytes from a `StorageFile`|
84
-
| ReadBytesFromFileAsync(StorageFolder, String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the given `StorageFolder`|
85
-
| ReadBytesFromKnownFoldersFileAsync(KnownFolderId, String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in a well known folder |
86
-
| ReadBytesFromLocalCacheFileAsync(String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the application local cache folder |
87
-
| ReadBytesFromLocalFileAsync(String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the application local folder |
88
-
| ReadBytesFromPackagedFileAsync(String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the application installation folder |
89
-
| ReadTextFromFileAsync(StorageFolder, String) | Task<string>| Gets a string value from a `StorageFile` located in the given `StorageFolder`|
90
-
| ReadTextFromKnownFoldersFileAsync(KnownFolderId, String) | Task<string>| Gets a string value from a `StorageFile` located in a well known folder |
91
-
| ReadTextFromLocalCacheFileAsync(String) | Task<string>| Gets a string value from a `StorageFile` located in the application local cache folder |
92
-
| ReadTextFromLocalFileAsync(String) | Task<string>| Gets a string value from a `StorageFile` located in the application local folder |
93
-
| ReadTextFromPackagedFileAsync(String) | Task<string>| Gets a string value from a `StorageFile` located in the application installation folder |
94
-
| WriteBytesToFileAsync(StorageFolder, Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` in the given `StorageFolder`|
95
-
| WriteBytesToKnownFolderFileAsync(KnownFolderId, Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` to well known folder |
96
-
| WriteBytesToLocalCacheFileAsync(Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` to application local cache folder |
97
-
| WriteBytesToLocalFileAsync(Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` to application local folder |
98
-
| WriteTextToFileAsync(StorageFolder, String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a `StorageFile` in the given `StorageFolder`|
99
-
| WriteTextToKnownFolderFileAsync(KnownFolderId, String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a Windows.Storage.StorageFile in well known folder |
100
-
| WriteTextToLocalCacheFileAsync(String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a Windows.Storage.StorageFile in application local cache folder |
101
-
| WriteTextToLocalFileAsync(String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a Windows.Storage.StorageFile in application local folder |
| FileExistsAsync(StorageFolder, String, Boolean) | Task<bool>| Gets a value indicating whether a file exists in the current folder |
81
+
| IsFileNameValid(String) |bool| Gets a value indicating whether a filename is correct or not using the Storage feature |
82
+
| IsFilePathValid(String) |bool| Gets a value indicating whether a file path is correct or not using the Storage feature |
83
+
| ReadBytesAsync(StorageFile) | Task<byte[]>| Gets an array of bytes from a `StorageFile`|
84
+
| ReadBytesFromFileAsync(StorageFolder, String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the given `StorageFolder`|
85
+
| ReadBytesFromKnownFoldersFileAsync(KnownFolderId, String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in a well known folder |
86
+
| ReadBytesFromLocalCacheFileAsync(String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the application local cache folder |
87
+
| ReadBytesFromLocalFileAsync(String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the application local folder |
88
+
| ReadBytesFromPackagedFileAsync(String) | Task<byte[]>| Gets an array of bytes from a `StorageFile` located in the application installation folder |
89
+
| ReadTextFromFileAsync(StorageFolder, String) | Task<string>| Gets a string value from a `StorageFile` located in the given `StorageFolder`|
90
+
| ReadTextFromKnownFoldersFileAsync(KnownFolderId, String) | Task<string>| Gets a string value from a `StorageFile` located in a well known folder |
91
+
| ReadTextFromLocalCacheFileAsync(String) | Task<string>| Gets a string value from a `StorageFile` located in the application local cache folder |
92
+
| ReadTextFromLocalFileAsync(String) | Task<string>| Gets a string value from a `StorageFile` located in the application local folder |
93
+
| ReadTextFromPackagedFileAsync(String) | Task<string>| Gets a string value from a `StorageFile` located in the application installation folder |
94
+
| WriteBytesToFileAsync(StorageFolder, Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` in the given `StorageFolder`|
95
+
| WriteBytesToKnownFolderFileAsync(KnownFolderId, Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` to well known folder |
96
+
| WriteBytesToLocalCacheFileAsync(Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` to application local cache folder |
97
+
| WriteBytesToLocalFileAsync(Byte[], String, CreationCollisionOption) | Task<StorageFile>| Saves an array of bytes to a `StorageFile` to application local folder |
98
+
| WriteTextToFileAsync(StorageFolder, String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a `StorageFile` in the given `StorageFolder`|
99
+
| WriteTextToKnownFolderFileAsync(KnownFolderId, String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a Windows.Storage.StorageFile in well known folder |
100
+
| WriteTextToLocalCacheFileAsync(String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a Windows.Storage.StorageFile in application local cache folder |
101
+
| WriteTextToLocalFileAsync(String, String, CreationCollisionOption) | Task<StorageFile>| Saves a string value to a Windows.Storage.StorageFile in application local folder |
0 commit comments