我正在嘗試使用C#將文件從Assets文件夾導出到Windows Phone 8.1 RT中的電話的Documents文件夾。我已啓用文檔庫功能並能夠訪問文檔庫。但我無法複製文件。如何將文件從Assets文件夾導出到Windows Phone 8.1 RT中的電話的Documents文件夾?
有人嗎?
我正在嘗試使用C#將文件從Assets文件夾導出到Windows Phone 8.1 RT中的電話的Documents文件夾。我已啓用文檔庫功能並能夠訪問文檔庫。但我無法複製文件。如何將文件從Assets文件夾導出到Windows Phone 8.1 RT中的電話的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>
此外,檢查出一個名爲'文件'的應用程序可以很容易地搜索您的手機上的文件。 – kernanb