1

我有一个非常简单的问题。我正在尝试异步加载一些应该位于的文件ApplicationData.Current.LocalFolder,但是那个目录在哪里?我应该如何将一些文件添加到这个文件夹中?

4

2 回答 2

2

在 Windows 7 或 8 中,它位于此处(假设 Windows 安装在C:驱动器上):

C:\Users\<your_user_name>\AppData\Local

<your_user_name>PC 上当前登录的用户名在哪里。

于 2013-12-22T11:46:31.157 回答
0

您不能直接访问此位置,而是将其作为StorageFolder引用:

StorageFolder localFolder = ApplicationData.Current.LocalFolder;

然后您可以添加或获取文件:

StorageFile file = await localFolder.CreateFileAsync(fileName);

StorageFile file = await localFolder.GetFileAsync(filename)
于 2013-12-22T11:50:16.513 回答