Hi,
WinRT provides access to files and folder located at the removable devices such as USB sticks and external hard drives using RemovableDevices folder.
To be able to access this folder you need to specify Removable Storage capability in the app’s manifest. Additionally, File Type Association must be declared for the each file type that will be accessed by the app.
StorageFolder folder = Windows.Storage.KnownFolders.RemovableDevices;
And you also can move floder to removable devices. Copy a file to a removable storage device by instantiating a storage object using
Windows.Devices.Portable.Storage.FromId. You can refer to the link to get more information:
http://msdn.microsoft.com/en-us/library/windows/apps/hh465218.aspx
Best Wishes!
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey. Thanks<br/> MSDN Community Support<br/> <br/> Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and
makes it easier for other visitors to find the resolution later.