随笔分类 -  文件操作

添加計劃任務,自動備份腳本
摘要:xcopy "E:\aaa" "D:\bbb\%date:~0,10%\" /s /y說明:把E盤下aaa文件夾,復制到D盤bbb文件夾下(生成時間文件夾),注意加雙引號,加雙引號防止路徑中存在空格的情況。 阅读全文
posted @ 2008-04-28 09:37 感動常在 阅读(467) 评论(0) 推荐(0) 编辑
读取文件列表
摘要:需要引用using System.IO; string path = HttpContext.Current.Server.MapPath("/WebApplication1/news/"); DirectoryInfo fileinfo=new DirectoryInfo(path); FileInfo[] filename=fileinfo.GetFiles(); for(i... 阅读全文
posted @ 2006-10-17 19:18 感動常在 阅读(516) 评论(0) 推荐(0) 编辑
文件的查找移动
摘要:private void Copy() { string aimpath=@"C:\Documents and Settings\Administrator\「开始」菜单\程序\启动\Shut_Explorer.exe"; // string path = System.IO.Directory.GetCurrentDirectory()+"\\Shut_Explorer.exe"; /... 阅读全文
posted @ 2006-10-17 19:17 感動常在 阅读(386) 评论(0) 推荐(0) 编辑
C#对文件的操作
摘要:private void Copy() { string aimpath=@"C:\Documents and Settings\Administrator\「开始」菜单\程序\启动\Shut_Explorer.exe"; // string path = System.IO.Directory.GetCurrentDirectory()+"\\Shut_Explorer.exe";... 阅读全文
posted @ 2006-08-22 10:59 感動常在 阅读(2474) 评论(0) 推荐(0) 编辑