public void Open() { if (!Directory.Exists(_path)) { Directory.CreateDirectory(_path); } }
public void Purge() { if (Directory.Exists(_path)) { Directory.Delete(_path, true); } Directory.CreateDirectory(_path); }