Files
SQLLint/SQLLinter/Core/Interfaces/IFileSystemWrapper.cs

11 lines
206 B
C#

namespace SQLLinter.Core.Interfaces;
public interface IFileSystemWrapper
{
bool FileExists(string path);
bool PathIsValidForLint(string path);
string CombinePath(params string[] paths);
}