会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Loading
androllen
不要让现实侵蚀了你的善良
博客园
首页
新随笔
联系
订阅
管理
2014年1月7日
Winform 基础知识 之文件夹操作
摘要: using System.IO; /// /// 删除文件夹下所有文件 /// /// public void DeleteFolder(string dir) { //如果存在这个文件夹删除之 if (Directory.Exists(dir)) { foreach (string d in Directory.GetFileSystemEntries(dir)) { ...
阅读全文
posted @ 2014-01-07 16:58 androllen
阅读(331)
评论(0)
推荐(0)
编辑
公告