K3

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2006年11月17日

摘要: 微软提供的System.IO.Directory不提供拷贝整个文件夹内容到其他目录的方法,所以自己写了一个 1 2 public class SKDirectory 3 { 4 static public void CopyTo(string sourceDirName, string destDirName) 5 { 6 ... 阅读全文
posted @ 2006-11-17 11:39 K3 阅读(399) 评论(0) 推荐(0)

摘要: 1using System; 2using System.Collections.Generic; 3using System.Text; 4using System.IO; 5 6using ICSharpCode.SharpZipLib.Zip; 7 8namespace Zipper 9{ 10 public class Zipper 11 ... 阅读全文
posted @ 2006-11-17 11:38 K3 阅读(481) 评论(0) 推荐(0)