public void Delete() { String filePath = _storage.GetFileName(); StorageMultiton.RemoveInstance(filePath); _storage.Close(); File.Delete(filePath); }
private IStorage OpenStorage(String filePath) { return(StorageMultiton.GetInstance(filePath)); }