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
检查文件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
$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
public void DownLoad( ){ string filePath = Server.MapPath( @"\UserFile\" );//这里注意了,你得指明要下载文件的路径. if ( System.IO.File.Exists( filePath ) ) ...
分类:
Web程序 时间:
2014-09-11 18:44:12
阅读次数:
195
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
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里面不能commit修改,提示open shellopen shell以后,使用git add [filename],会报错:fatal: Unable to create './.git/index.lock': File exists. If no other g...
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
if (File.Exists(xmlPath + "\\" + xmlName)) //判断文件是否寸在 { //存在的情况下 XmlDocument xmldoc = new XmlDocument(); xmldoc.Load(xmlPath + "\\" + xmlName); /...
分类:
其他好文 时间:
2014-08-27 12:29:17
阅读次数:
214