如何在Windows Phone 8的手机内存中的图片文件夹中创建新文件夹?

时间:2016-01-09 02:13:24

标签: windows-phone-8

我是开发Windows Phone 8应用程序的新手,我想知道如何在手机内存的图片文件夹中创建新文件夹。一个例子会很棒!在这些图片中显示了我想要创建新文件夹的位置我应该为此目的声明哪些功能? 这是我的代码,但它不起作用。

StorageFolder folder = KnownFolders.PicturesLibrary;
StorageFolder myFolder = await folder.CreateFolderAsync("MyNewFolder", CreationCollisionOption.ReplaceExisting);
StorageFile myFile = await myFolder.CreateFileAsync("MyInformation.txt");
using (StreamWriter f = new StreamWriter(myFile.Path))
{
    f.WriteLine("ABC");
    f.Close();
}

1 个答案:

答案 0 :(得分:0)

在Windows Phone 8中,sdCard是只读的。在Windows Phone 8.1或更高版本中,sdCard是可写的