删除指定目录内的文件

public void delfile(string path)
        {
            if (Directory.Exists(path))
            {
                foreach (string d in Directory.GetFileSystemEntries(path))
                {
                    if (File.Exists(d))
                        File.Delete(d);
                    else
                        delfile(path);
                }
                Directory.Delete(path, true);
            }
        }
posted @ 2012-08-07 11:11  隔壁王叔  阅读(159)  评论(0编辑  收藏  举报