C#でサブディレクトリ配下の全てのファイルを取得する

DOSコマンドなら「dir /s /b」で一瞬なんだけどな~~
で、C#で同じことしようとすると、メソッドの再帰処理1)が必要になってきます。
参考文献:https://dianxnao.com/%E3%82%B5%E3%83%96%E3%83%87%E3%82%A3%E3%83%AC%E3%82%AF%E3%83%88%E3%83%AA%E3%82%82%E5%90%AB%E3%82%81%E3%81%9F%E5%85%A8%E3%81%A6%E3%81%AE%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%90%8D%E5%8F%96%E5%BE%97/

C#でC:\配下を検索しようとすると、どうしてもゴミ箱とかアプリケーションによるアクセスが禁止されている箇所を検索したタイミングで例外が発生するらしい。 以下の例はtouchコマンドを作ってみるよで作成(とうよりほぼ参考文献まま)したサブディレクトリ配下の検索をするためのメソッドです。検索した物がディレクトリなのかファイルなのか区別する必要があったのでDorFクラスを作成しています。

  1. internal class DorF
  2. {
  3. public string PathName;
  4. public pathKinder PathKind;
  5.  
  6. public DorF(string pathName , pathKinder pathKind)
  7. {
  8. PathName = pathName;
  9. PathKind = pathKind;
  10. }
  11.  
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. /// <param name="dt"></param>
  16. /// <exception cref="Exception"></exception>
  17. public void setLastWriter(DateTime dt)
  18. {
  19. try
  20. {
  21. if (PathKind == pathKinder.file)
  22. {
  23. File.SetLastWriteTime(PathName, dt);
  24. }
  25. else
  26. {
  27. Directory.SetLastWriteTime(PathName, dt);
  28. }
  29. }catch (Exception ex)
  30. {
  31. throw new Exception(ex.Message, ex.InnerException);
  32. }
  33. }
  34. }
  1. protected static List<DorF> getAllFiles(string path,string filePtn, SearchOption sh,bool isDir)
  2. {
  3. List<DorF> lstStr = new List<DorF>();
  4.  
  5. try
  6. {
  7. var files = Directory.EnumerateFiles(path,filePtn);
  8. foreach (var file in files)
  9. {
  10. lstStr.Add(new DorF(file, pathKinder.file));
  11. }
  12.  
  13. var dirs = Directory.EnumerateDirectories(path);
  14. foreach (var dir in dirs)
  15. {
  16. if (isDir)
  17. {
  18. lstStr.Add(new DorF(dir, pathKinder.directory));
  19. }
  20.  
  21. if (sh.Equals(SearchOption.AllDirectories))
  22. {
  23. lstStr.AddRange(getAllFiles(dir,filePtn,sh,isDir));
  24. }
  25. }
  26. }catch (UnauthorizedAccessException e)
  27. {
  28. Console.WriteLine(LocalizeReader.GetResourceValue("msg0002", false));
  29. }catch (Exception e)
  30. {
  31. throw new UserFileException(e.Message, e.InnerException);
  32. }
  33.  
  34. return lstStr;
  35. }

1)
メソッドの中でメソッドを呼び出す
  • wiki/dokuwiki/cs/c.txt
  • 最終更新: 2024/11/04 00:47
  • by 127.0.0.1