• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






只羡鸳鸯

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2013年2月7日

C#将文件从指定的目录复制到另一个目录
摘要: using System;using System.Collections.Generic;using System.Text;using System.IO;namespace TEST{ class FileHelper {/// <summary> /// 复制目录 /// </summary> /// <param name="SourcePath">源路径</param> /// <param name="TargetPath">目标路径</param> /// <p 阅读全文
posted @ 2013-02-07 18:07 只羡鸳鸯 阅读(1329) 评论(0) 推荐(1)
 
C#解压、压缩RAR文件
摘要: usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.IO;usingMicrosoft.Win32;usingSystem.Diagnostics;public class WinRARHelper { /// <summary> /// 是否安装了Winrar /// </summary> /// <returns></returns> static public bool Exists() { ... 阅读全文
posted @ 2013-02-07 17:14 只羡鸳鸯 阅读(340) 评论(0) 推荐(0)