2016-12-13 5 views
1

Как скопировать файлы из локального хранилища на SD-карту или известные папки в WP8.1 для целей резервного копирования?Копирование файла Sqlite из локального хранилища на SD-карту в WP8.1

Я использую подборщик папок, чтобы выбрать место сохранения.

Мой код:

Private Async Sub ButtonBackup_Click(sender As Object, e As RoutedEventArgs) 
    Dim FolderPicker As New FolderPicker() 
    FolderPicker.SuggestedStartLocation = PickerLocationId.DocumentsLibrary 

    FolderPicker.ViewMode = PickerViewMode.List 
    FolderPicker.PickFolderAndContinue() 

End Sub 

Public Async Sub ContinueFolderPicker(ByVal args As FolderPickerContinuationEventArgs) Implements IFolderPickerContinuable.ContinueFolderPicker 
    Dim folder As StorageFolder = args.Folder 
    If folder IsNot Nothing Then 
     ' Application now has read/write access to all contents in the picked folder (including other sub-folder contents) 
     StorageApplicationPermissions.FutureAccessList.AddOrReplace("PickedFolderToken", folder) 
     'OutputTextBlock.Text = "Picked folder: " & folder.Name 
    Else 
     'OutputTextBlock.Text = "Operation cancelled." 
    End If 
    Dim file As StorageFile = Await Windows.Storage.ApplicationData.Current.LocalFolder.GetFileAsync("ContactsManager.sqlite") 
    CopyFileToFolder(file, folder) 

End Sub 

Public Async Sub CopyFileToFolder(ByVal filetoCopy As StorageFile, ByVal folder As StorageFolder) 
    Await filetoCopy.CopyAsync(folder) 
End Sub 

Но ниже линии не запускается:

Public Async Sub ContinueFolderPicker(ByVal args As FolderPickerContinuationEventArgs) Implements IFolderPickerContinuable.ContinueFolderPicker 

ответ

0

наконец я решил мой вопрос, ниже кодов corrent.

Private Async Sub ButtonBackup_Click(sender As Object, e As RoutedEventArgs) 
    Dim SqliteStorageFile As StorageFile = Await Windows.Storage.ApplicationData.Current.LocalFolder.GetFileAsync("ContactsManager.sqlite") 

    Dim buffer() As Byte 
    Dim stream As Stream = Await SqliteStorageFile.OpenStreamForReadAsync() 
    buffer = New Byte(stream.Length - 1) {} 
    Await stream.ReadAsync(buffer, 0, CInt(stream.Length)) 

    Dim savePicker = New FileSavePicker() 
    savePicker.FileTypeChoices.Add("Backup File", New List(Of String)() From {".backup"}) 
    savePicker.SuggestedFileName = SqliteStorageFile.Name 

    Dim file = Await savePicker.PickSaveFileAsync() 
    If file IsNot Nothing Then 
     CachedFileManager.DeferUpdates(file) 
     Await FileIO.WriteBytesAsync(file, buffer) 
     CachedFileManager.CompleteUpdatesAsync(file) 
    End If 
End Sub