ProcessFiles.cs 4.1 KB

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