Files
git.stella-ops.org/Mongo2Go-4.1.0/src/Mongo2Go/Helper/IFileSystem.cs

10 lines
257 B
C#

namespace Mongo2Go.Helper
{
public interface IFileSystem
{
void CreateFolder(string path);
void DeleteFolder(string path);
void DeleteFile(string fullFileName);
void MakeFileExecutable (string path );
}
}