For now, I just know how to copy file using:
IStorageFolder dir = Windows.Storage.ApplicationData.Current.LocalFolder;
IStorageFile file = await StorageFile.GetFileFromApplicationUriAsync(
new Uri("ms-appx:///file.txt"));
await file.CopyAsync(dir, "file.txt");
When I try to copy folder and all the content inside, I cannot find the API like CopyAsync
above.
Is it possible to copy folder and all the content in WinRT?
Code above didn't satisfy me (too specific), i made my own generic one so figured i could share it :