如何從子目錄獲取文件,以及使用該代碼只獲取目錄下的文件所做的工作列出:Directory.GetFiles如何訪問子目錄?
DirectoryInfo selDir = new DirectoryInfo(folderBrowserDialog1.SelectedPath);
Directory.CreateDirectory(folderBrowserDialog1.SelectedPath + "\\Output");
foreach (FileInfo d in selDir.GetFiles())
{
//my code
}
您必須盲目瞭解這段代碼,您剛創建的目錄不會有任何文件。 –
哦,我真的很抱歉,代碼是不完整的,讓我編輯that.Done。 – Omarrrio
-1:如果您尚未找到如何包含子目錄,則甚至無法閱讀已調用方法的文檔:http://msdn.microsoft.com/en-us/library/system。 io.directoryinfo.getfiles.aspx –