码迷,mamicode.com
首页 >  
搜索关键字:file_exists    ( 315个结果
Java递归删除文件
package com.jfinal.kit; import java.io.File; public class FileKit { public static void delete(File file) { if ((file != null) && (file.exists())) { if (file.isFile()) { file.delete(); } else if (fi...
分类:编程语言   时间:2014-09-22 00:47:31    阅读次数:227
PHP内容管理项目函数列表
检查文件file_exists($file);检查文件夹is_dir($dir);输出md5md5($file;输出字符串到文件,如果文件不存在自动则自动创建file_put_contents($file, $outputContent);从文件读内容file_get_contents($file)...
分类:Web程序   时间:2014-09-22 00:18:01    阅读次数:257
文件下载-支持中文文件名
function getTmp(){ $file_name = 'orderTemp.xlsx'; $file_path = dirname(__FILE__); #判断一下文件是否存在 if(! file_exists($file_path. '/' .$file_name...
分类:其他好文   时间:2014-09-18 18:32:54    阅读次数:141
通过php下载文件并重命名
$filename = dirname(__FILE__) . '/oldfilename.jpg';$out_filename = 'newfilename.jpg';if( ! file_exists($filename)){ echo 'Not Found' . $filename; ex.....
分类:Web程序   时间:2014-09-13 17:15:35    阅读次数:281
asp.net下载的方法
public void DownLoad( ){ string filePath = Server.MapPath( @"\UserFile\" );//这里注意了,你得指明要下载文件的路径. if ( System.IO.File.Exists( filePath ) ) ...
分类:Web程序   时间:2014-09-11 18:44:12    阅读次数:195
python异常处理
flag = 1while 1: flag = flag + 1 if flag > 10: break try: f = open("file-not-exists", "r") except IOError,e: print(...
分类:编程语言   时间:2014-09-05 19:46:31    阅读次数:232
20140905bug
shell脚本: syntax error near unexpected token elseif [ -f "$impDataFile" -a -f "$tagFile" ] ;then else #一开始左边缺了空格 echo "file is not exists"fi
分类:其他好文   时间:2014-09-05 12:51:01    阅读次数:216
git for windows 无法提交修改的处理
在git for windows里面不能commit修改,提示open shellopen shell以后,使用git add [filename],会报错:fatal: Unable to create './.git/index.lock': File exists. If no other g...
分类:Windows程序   时间:2014-09-02 17:35:05    阅读次数:328
判断XML文件是否寸在
var seg = UserName; if (File.Exists(UserName + ".xml"))//c { string Name = "NotRemindBox"; XmlDocument xdocs = new XmlDocument(); xdocs.Load(UserN...
分类:其他好文   时间:2014-08-27 18:17:48    阅读次数:171
判断XML文件是否存在,不存在就创建一个XMl文件,存在就在里面添加
if (File.Exists(xmlPath + "\\" + xmlName)) //判断文件是否寸在 { //存在的情况下 XmlDocument xmldoc = new XmlDocument(); xmldoc.Load(xmlPath + "\\" + xmlName); /...
分类:其他好文   时间:2014-08-27 12:29:17    阅读次数:214
315条   上一页 1 ... 27 28 29 30 31 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!