摘要: 最近发现群共享里面有个C# 文件操作封装类,其方法是调用Windows API 来操作的文件的删除、移动、复制、重命名操作。下载下来一试,发现果然不错,特在此记录,以防丢失!文件操作类代码如下:C# 文件操作类using System;using System.Runtime.InteropServices;using System.IO;namespace LxFile{ /// <summary> /// 文件操作代理,该类提供类似于Windows的文件操作体验 /// </summary> public class FileOperateProxy { ... 阅读全文
posted @ 2012-11-13 15:22 Rising_Sun 阅读(11194) 评论(1) 推荐(4) 编辑