简体   繁体   中英

Getting Folder from folder RelativeID - Windows Phone

How can I get folder from folder relative ID in Windows Phone 8.1?

StorageFolder folder = await StorageFolder.GetFolderFromPathAsync(path);

this code works with full path, not relativeID.

public sealed class StorageFolder
{
    IAsyncOperation<StorageFolder> GetFolderAsync(string name);

. . .

StorageFolder folder = await StorageFolder.GetFolderAsync(folderId);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM