進入正題
一開始直接使用GetDirectoryNames("folder")
string[] folderlist; IsolatedStorageFile iso = IsolatedStorageFile
if(iso
{
folderlist=iso
}
運行後發現這樣寫並不能獲取到folder的子文件夾
public string[] GetDirectoryNames();
//
// 摘要:
// 枚舉獨立存儲范圍中與給定模式匹配的目錄
//
// 參數:
// searchPattern:
// 搜索模式
//
// 返回結果:
// 獨立存儲范圍中與 searchPattern 匹配的目錄的相對路徑 System
GetDirectoryNames的搜索模式
string[] folderlist;
IsolatedStorageFile iso = IsolatedStorageFile
if(iso
{
folderlist=iso
}
From:http://tw.wingwit.com/Article/Common/201311/6527.html