码迷,mamicode.com
首页 >  
搜索关键字:createdirectory    ( 73个结果
Windows API 文件处理
CloseHandle 关闭一个内核对象。其中包括文件、文件映射、进程、线程、安全和同步对象等 CompareFileTime 对比两个文件的时间 CopyFile 复制文件 CreateDirectory 创建一个新目录 CreateFile 打开和创建文件、管道、邮槽、通信服务、设备以及控制台 ... ...
分类:Windows程序   时间:2016-06-25 15:02:33    阅读次数:285
Directory 操作文件夹类
1、Directory 操作文件夹 CreateDirectory 创建文件夹 Delete 删除文件夹 Move 剪切文件夹 Exist 判断是否存在 GetFiles 获得指定的目录下所有文件的全路径 GetDirectory 获得指定目录下所有文件夹的全路径 2、WebBrowser浏览器控件 ...
分类:其他好文   时间:2016-06-20 15:52:17    阅读次数:178
自动创建文件夹的两种方法
自动创建文件夹的两种方法 1、CreateDictionary() CreateDirectory(myPath, 0); //在临时文件夹中创建本应用的文件夹 原型为:BOOL WINAPI CreateDirectory(__in LPCTSTR lpPathName, __in LPSECUR ...
分类:其他好文   时间:2016-05-14 22:56:59    阅读次数:195
C# 文件操作
1.创建文件夹 1.创建文件夹 1.创建文件夹 //using System.IO;Directory.CreateDirectory(%%1); 2.创建文件//using System.IO;File.Create(%%1); 3.删除文件//using System.IO;File.Delet ...
分类:Windows程序   时间:2016-03-28 11:45:17    阅读次数:394
c#常用方法
创建目录 Directory.CreateDirectory(Application.StartupPath+"\\test");
分类:Windows程序   时间:2016-02-04 11:32:34    阅读次数:159
提取网站图片
protected void sub_Click(object sender, EventArgs e) { int i = 0; string url = this.url.Text; Directory.CreateDirectory("D:/as...
分类:Web程序   时间:2016-01-14 13:52:55    阅读次数:205
c#文件操作大全
1.创建文件夹//using System.IO;Directory.CreateDirectory(%%1);2.创建文件//using System.IO;File.Create(%%1);3.删除文件//using System.IO;File.Delete(%%1);4.删除文件夹//usi...
分类:Windows程序   时间:2015-11-21 07:08:11    阅读次数:313
c#文件操作
名称说明CreateDirectory按照path的指定创建所有目录和子目录。Delete(String)从指定路径删除空目录。Delete(String, Boolean)删除指定的目录并(如果指示)删除该目录中的所有子目录和文件。Exists确定给定路径是否引用磁盘上的现有目录。GetCreat...
分类:Windows程序   时间:2015-11-13 13:10:45    阅读次数:545
C#第十二天
1、Directory 操作文件夹1)创建文件夹1 Directory.CreateDirectory(@"C:\a");2 Console.WriteLine("创建成功");3 Console.ReadKey();View Code2)删除文件夹1...
分类:Windows程序   时间:2015-11-09 10:29:21    阅读次数:168
C#_IO操作
1.创建文件夹//using System.IO;Directory.CreateDirectory(%%1);2.创建文件//using System.IO;File.Create(%%1);3.删除文件//using System.IO;File.Delete(%%1);4.删除文件夹//usi...
分类:Windows程序   时间:2015-09-14 18:06:28    阅读次数:267
73条   上一页 1 2 3 4 5 6 ... 8 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!