我正在尝试使用C#将文件从Assets文件夹导出到Windows Phone 8.1 RT中的手机的Documents文件夹。我已启用文档库功能并能够访问文档库。但是我无法复制文件。
任何?
答案 0 :(得分:0)
我还没有尝试过从Assets复制文件,但我可以将文件写到手机的Documents文件夹中确定:
var myFolder = KnownFolders.DocumentsLibrary;
var myFile = await myFolder.CreateFileAsync("test.txt", CreationCollisionOption.OpenIfExists);
await FileIO.WriteTextAsync(myFile, "hello world");
清单中是否有正确的文件类型关联?应该是这样的:
<Extension Category="windows.fileTypeAssociation">
<FileTypeAssociation Name="txt">
<DisplayName>txt</DisplayName>
<SupportedFileTypes>
<FileType>.txt</FileType>
</SupportedFileTypes>
</FileTypeAssociation>
</Extension>