AI智能
改变未来

c#获取文件夹下面文件名和获取文件夹下面子文件加下文件名

获取文件夹下文件名

[code]textBox1.Text = folderBrowserDialog1.SelectedPath;DirectoryInfo theFolder = new DirectoryInfo(textBox1.Text);FileInfo[] dirInfo = theFolder.GetFiles();//遍历文件夹foreach (FileInfo NextFolder in dirInfo){listBox1.Items.Add(NextFolder.Name);}

获取文件夹下子文件夹下的文件名

[code]DirectoryInfo theFolder = new DirectoryInfo(textBox1.Text);DirectoryInfo[] dirInfo = theFolder.GetDirectories();//遍历文件夹foreach (DirectoryInfo NextFolder in dirInfo){FileInfo[] fileInfo = NextFolder.GetFiles();foreach (FileInfo NextFile in fileInfo)  //遍历文件this.listBox2.Items.Add(NextFile.Name);}

第2个例子获取文件夹下子文件夹里面的文件名,不能获取当前文件夹下的文件名

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » c#获取文件夹下面文件名和获取文件夹下面子文件加下文件名