ProcessFiles.cs 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. using ProcessFiles.Interfaces;
  2. using ProcessFiles.Models;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.IO;
  6. namespace ProcessFiles
  7. {
  8. public class ProcessFiles(IFileSystem? fileSystem = null)
  9. {
  10. private readonly IFileSystem fileSystem = fileSystem ?? new DefaultFileSystem();
  11. private List<string> errors = [];
  12. private Result WhatIsIt(string path)
  13. {
  14. try
  15. {
  16. var attr = fileSystem.File.GetAttributes(path);
  17. if (attr.HasFlag(FileAttributes.Directory))
  18. return Result.Directory;
  19. return Result.File;
  20. }
  21. catch (Exception e)
  22. {
  23. errors.Add($"Problem getting {path} attributes:\n" +
  24. $"{e.Message} - {e.Source} - {e.TargetSite}");
  25. return Result.Failure;
  26. }
  27. }
  28. private string? GetExtension(string path)
  29. {
  30. var extension = Path.GetExtension(path).TrimStart('.');
  31. if (!string.IsNullOrWhiteSpace(extension)) return extension;
  32. errors.Add($"Can't establish extension of {path}!");
  33. return null;
  34. }
  35. private static bool CheckExtension(string extension, string[] validExtensions)
  36. {
  37. foreach (var validExtension in validExtensions)
  38. {
  39. if (extension.Equals(validExtension, StringComparison.InvariantCultureIgnoreCase))
  40. return true;
  41. }
  42. return false;
  43. }
  44. private bool IsValid(string path, string[] fileExtensions)
  45. {
  46. if (!File.Exists(path))
  47. {
  48. errors.Add($"{path} doesn't exist!");
  49. return false;
  50. }
  51. var extension = GetExtension(path);
  52. if (extension == null)
  53. return false;
  54. if (!CheckExtension(extension, fileExtensions))
  55. {
  56. errors.Add($"Extension of {path} doesn't match any extension ({string.Join(", ", fileExtensions)})!");
  57. return false;
  58. }
  59. return true;
  60. }
  61. private void PerformAction(string path, Action<string> action)
  62. {
  63. try
  64. {
  65. action(path);
  66. }
  67. catch (Exception e)
  68. {
  69. errors.Add($"{path}:\n{e.Message} - {e.Source} - {e.TargetSite}");
  70. }
  71. }
  72. private void ProcessFile(string path, string[] fileExtensions, Action<string> action)
  73. {
  74. if (!IsValid(path, fileExtensions))
  75. return;
  76. PerformAction(path, action);
  77. }
  78. private void ProcessDir(string path, string[] fileExtensions, Action<string> action, bool recursive = false)
  79. {
  80. if (!Directory.Exists(path))
  81. {
  82. errors.Add($"{path} doesn't exist!");
  83. return;
  84. }
  85. var searchOption = recursive switch
  86. {
  87. false => SearchOption.TopDirectoryOnly,
  88. true => SearchOption.AllDirectories,
  89. };
  90. List<string> files = [];
  91. foreach (var extension in fileExtensions)
  92. {
  93. files.AddRange(Directory.GetFiles(path, $"*.{extension}", searchOption));
  94. }
  95. if (files.Count == 0)
  96. {
  97. errors.Add($"There are no files in {path} with given extensions ({string.Join(", ", fileExtensions)})!");
  98. return;
  99. }
  100. foreach (var file in files)
  101. ProcessFile(file, fileExtensions, action);
  102. }
  103. public IEnumerable<string> Process(IEnumerable<string> arguments, string fileExtension, Action<string> action, bool recursive = false)
  104. {
  105. return Process(arguments, [fileExtension], action, recursive);
  106. }
  107. public IEnumerable<string> Process(IEnumerable<string> arguments, string[] fileExtensions, Action<string> action, bool recursive = false)
  108. {
  109. errors = [];
  110. foreach (var argument in arguments)
  111. {
  112. switch (WhatIsIt(argument))
  113. {
  114. case Result.File:
  115. ProcessFile(argument, fileExtensions, action);
  116. break;
  117. case Result.Directory:
  118. ProcessDir(argument, fileExtensions, action, recursive);
  119. break;
  120. case Result.Failure:
  121. continue;
  122. }
  123. }
  124. return errors;
  125. }
  126. }
  127. }