码迷,mamicode.com
首页 >  
搜索关键字:createdirectory    ( 73个结果
【转】c#文件操作大全(一)
1.创建文件夹//using System.IO;Directory.CreateDirectory(%%1);2.创建文件//using System.IO;File.Create(%%1);3.删除文件//using System.IO;File.Delete(%%1);4.删除文件夹//usi...
分类:其他好文   时间:2014-08-13 10:19:05    阅读次数:174
将XML文件写入android
----formshownewpath:=‘/storage/sdcard0/DCIM/100ANDRO/GRJKDAGLGXYSF‘;ifnotTDirectory.Exists(newpath)thenbeginTDirectory.CreateDirectory(newpath);//Createafolderend;newpath:=newpath+‘/‘;----存入本机varfilename:string;newfile:Tfilestream;beginfilename:=‘update..
分类:移动开发   时间:2014-08-04 14:42:27    阅读次数:256
C#判断文件和文件夹是否存在 不存在则创建
using System.IO;string path = @"D:\accountDaoRu"; if (Directory.Exists(path) == false) { Directory.CreateDirectory(path); }if (Directory.Exists(Server...
分类:其他好文   时间:2014-07-23 22:13:17    阅读次数:250
oracle数据库的备份及升级
以oracle用户登陆数据库所在的服务器,例如家目录为/home./oracle.执行以下命令进行备份操作。       sqlplus /nolog       connect /as sysdba      sql>createdirectory dump_bx as '指定一个存放dmp文件的目录';      sql>grantread,write on directory d...
分类:数据库   时间:2014-07-16 17:10:09    阅读次数:205
Oracle 11G R2 用exp无法导出空表解决方法
四、Oracle 10g以后增加了expdp和impdp工具,用此工具也可以导出空的表oracleexpdp/impdp用法详解1)创建逻辑目录,该命令不会在操作系统创建真正的目录,最好以system等管理员创建。createdirectory db_bak as 'd:\test\dump';2)...
分类:数据库   时间:2014-07-09 21:15:39    阅读次数:313
Directory类
Directory类 是一个静态类,常用的地方为创建目录和目录管理。一下来看看它提供的操作。1、CreateDirectory 根据指定路径创建目录。有重载,允许一次过创建多个目录。2、Delete 删除指定的目录。 有重载,指示目录有子目录的情况下,是否删除子...
分类:其他好文   时间:2014-07-07 10:29:39    阅读次数:180
WIN32错误处理
以下内容摘自:http://baike.baidu.com/view/8552073.htm?fr=aladdinFor example: 1 void TestErrorInfo(void) 2 { 3 //进行出错。 4 if (!CreateDirectory(_T("c:\\"),0)) 5...
分类:Windows程序   时间:2014-06-30 23:53:02    阅读次数:424
创建目录(单个目录和多级子目录)方法
1. CreateDirectory 创建文件夹(只能创建一级目录) C\C++函数原型:CreateDirectory( LPCTSTR lpPathName, LPSECURITY_ATTRIBUTES lpSecurityAttributes );简介: CreateDirectory ...
分类:其他好文   时间:2014-06-28 12:40:07    阅读次数:309
C++中创建目录
1 char szDirName[] = "文件路径"; 2 CreateDirectory(szDirName, NULL) ; 3 //这样就可以了CreateDirectory功能:This function creates a new directory. If the underlyin....
分类:编程语言   时间:2014-06-20 15:04:20    阅读次数:275
[收藏]c#与word
public string CreateWordFile(string CheckedInfo) { string message = ""; try { Object Nothing = System.Reflection.Missing.Value; Directory.CreateDirectory("C:/CNSI"); //创建文件所在目录 string name = "CNSI.doc...
分类:其他好文   时间:2014-06-08 04:57:55    阅读次数:291
73条   上一页 1 ... 5 6 7 8 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!