我是开发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();
}
答案 0 :(得分:0)
在Windows Phone 8中,sdCard是只读的。在Windows Phone 8.1或更高版本中,sdCard是可写的