我有一个带有getItemsAsync()
-method 的应用程序,它返回用户使用文件选择器选择的图片的文件对象。现在我想获取包含图像的文件夹的文件夹对象,以使用户能够在该文件夹中的图片之间切换而无需再次使用文件选择器。
问问题
1255 次
2 回答
1
The path is available upon return from the file picker. See:
You can in turn then call
Windows.Storage.StorageFolder.getFolderFromPathAsync(path) .done( /* Your success and error handlers */ );
to get you the StorageFolder from that path.
于 2013-05-03T21:38:26.383 回答
1
如果应用程序可能想要“访问”选择文件夹中的任何文件,使用FolderPicker可能是正确的。否则,应用程序可能无法访问文件夹中的所有文件。
于 2013-05-04T03:31:57.807 回答