10 lines
257 B
C#
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 );
|
|
}
|
|
} |