码迷,mamicode.com
首页 >  
搜索关键字:file_exists    ( 315个结果
PHP、thinkPHP5.0开发网站文件管理功能(四)下载文件
public function download($currdir = null){ $file = urldecode($currdir); $file = iconv('UTF-8', "GB2312", $file); if (!file_exists($file)) { $this->err ...
分类:Web程序   时间:2018-05-24 18:18:08    阅读次数:223
trycatche
<?phpheader("Content-type: text/html; charset=utf-8"); try{$aaa = 0;if ($aaa == 9) {echo 9999;} else {throw new Exception('file is not exists');}} cat ...
分类:其他好文   时间:2018-04-13 13:23:16    阅读次数:159
mvc 读写txt文档
写入内容 string userfile = "UserData.txt"; StreamWriter sw = null; //判断是否存在 if (!System.IO.File.Exists(System.Web.HttpContext.Current.Server.MapPath(@"../ ...
分类:Web程序   时间:2018-04-03 15:20:50    阅读次数:166
Linux常见报错注释
常见报错注释1. command not found 命令没有找到2. No such file or directory 没有这个文件或目录3. Permission denied 权限不足4. No space left on device 磁盘没有剩余空间5. File exists 文件已经 ...
分类:系统相关   时间:2018-03-30 19:55:04    阅读次数:204
git pull失败提示fatal: Unable to create 'E:/job/tpaas-web/.git/index.lock': File exists.
git 提交时失败 提示如下错误:fatal: Unable to create 'E:/job/tpaas-web/.git/index.lock': File exists. 解决方法:删除.lock文件 rm -f ./.git/index.lock命令执行后再次 git pull 即可 rm ...
分类:Web程序   时间:2018-02-24 23:07:24    阅读次数:326
java写文件实现换行
Java 写文件实现换行 第一种: 写入的内容中利用\r\n进行换行 File file = new File("D:/text"); try { if(!file.exists()) file.createNewFile(); FileOutputStream out=new FileOutput ...
分类:编程语言   时间:2018-02-01 19:21:30    阅读次数:205
java I/O总结(一)
File类:即能代表一个特定文件的名称,又能代表一个目录下的一组文件的名称。File类也可以用来创建新的目录。File file = new File( "D:/test.txt");    file.exists();    File file2 = new File( "D:/mkdi
分类:编程语言   时间:2018-02-01 18:28:19    阅读次数:228
php 将图片转成base64
/** * 获取图片的Base64编码(不支持url) * @param $img_file 传入本地图片地址 * @return string */ function imgToBase64($img_file) { $img_base64 = ''; if (file_exists($img_f... ...
分类:Web程序   时间:2018-01-08 12:19:17    阅读次数:143
is_file和file_exists效率比较
目前在弄文件缓存的时候用到了判定文件存在与否,is_file()还是file_exists()呢?is_file和file_exists两者效率比较起来,谁的运行速度更快呢?还是做个测试吧: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 ...
分类:其他好文   时间:2017-12-24 11:19:37    阅读次数:90
判断文件的格式
/// <summary> /// 打开图片,仅支持jpg /// </summary> private Image OpenImage(string imagePath) { if (!File.Exists(imagePath)) { return null; } string extensio ...
分类:其他好文   时间:2017-11-27 11:09:32    阅读次数:126
315条   上一页 1 ... 6 7 8 9 10 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!