Exemplo n.º 1
0
        public void DeleteDirectory(string path, bool recursive)
        {
            if (_sharpCifsFileSystem.IsEnabledForPath(path))
            {
                _sharpCifsFileSystem.DeleteDirectory(path, recursive);
                return;
            }

            Directory.Delete(path, recursive);
        }