UWP:无法创建文件夹或文件

时间:2018-11-08 21:00:21

标签: uwp

我一直在关注以下页面,尝试在我的UWP项目的本地应用程序目录中创建文件夹和文件:

Creating a file/folder in UWP

https://docs.microsoft.com/en-us/windows/uwp/files/quickstart-reading-and-writing-files

到目前为止,没有成功。我在第一个链接中遵循了代码示例,但是在项目的任何地方都没有创建文件夹。

Windows.Storage.StorageFolder storageFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
StorageFolder projectFolder = await storageFolder.CreateFolderAsync("HereIsATestFolder", CreationCollisionOption.ReplaceExisting);
Windows.Storage.StorageFile sampleFile = await projectFolder.CreateFileAsync("OutputCharacterizationTable.txt", Windows.Storage.CreationCollisionOption.ReplaceExisting);

我还尝试在第二个链接中加载代码示例以创建文件并写入该文件,但仍然没有任何内容。

Windows.Storage.StorageFolder storageFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
Windows.Storage.StorageFile sampleFile = await storageFolder.CreateFileAsync("sample.txt", Windows.Storage.CreationCollisionOption.ReplaceExisting);

我也没有从运行应用程序中收到任何错误或异常,所以就调试而言,我一直陷于困境。还有什么我可能会想念的吗?我正在运行VS2017。

0 个答案:

没有答案