遍历文件夹.ZC测试
Posted csskill
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历文件夹.ZC测试相关的知识,希望对你有一定的参考价值。
1、
string FstrSelectPath = @"D:C_RuanJianmovie est01小猪佩奇(持续更新)小猪佩奇中文版 1080P小猪佩奇中文版第7季 1080P"; private void Click_SelectFolder(object sender, RoutedEventArgs e) { System.Windows.Forms.FolderBrowserDialog dialog = new System.Windows.Forms.FolderBrowserDialog(); dialog.Description = "请选择文件夹"; dialog.SelectedPath = FstrSelectPath; if (dialog.ShowDialog() == System.Windows.Forms.DialogResult.OK) { if (string.IsNullOrEmpty(dialog.SelectedPath)) { MessageBox.Show(this, "选择的文件夹路径为空", "提示"); return; } FstrSelectPath = dialog.SelectedPath; tbSelectedFolder.Text = FstrSelectPath; } } List<string> BianLiFile01(string _strPath) { //C#遍历指定文件夹中的所有文件 DirectoryInfo folder = new DirectoryInfo(_strPath); if (!folder.Exists) { MessageBox.Show("文件夹不存在", "提示"); return null; } List<string> list = new List<string>(); //遍历文件 foreach (FileInfo file in folder.GetFiles())// folder.GetDirectories() 目录 list.Add(file.Name); return list; }
2、
3、
4、
5、
以上是关于遍历文件夹.ZC测试的主要内容,如果未能解决你的问题,请参考以下文章