allow graphics elements with yml and yaml extension (#2617)

This commit is contained in:
Jason Dove
2025-11-09 13:40:34 -06:00
committed by GitHub
parent 9d2cff53c5
commit 2b0079fedc
3 changed files with 32 additions and 5 deletions
@@ -10,6 +10,7 @@ public interface ILocalFileSystem
IEnumerable<string> ListSubdirectories(string folder);
IEnumerable<string> ListFiles(string folder);
IEnumerable<string> ListFiles(string folder, string searchPattern);
IEnumerable<string> ListFiles(string folder, params string[] searchPatterns);
bool FileExists(string path);
bool FolderExists(string folder);
Task<Either<BaseError, Unit>> CopyFile(string source, string destination);