码迷,mamicode.com
首页 >  
搜索关键字:file_exists    ( 315个结果
输出字符流--创建文件并写入信息
public static void createFileAndWriter(String message) { File file = new File("F:\\CreateDemo\\"); if (!file.exists()) { file.mkdir();//创建一个新目录 } File ...
分类:其他好文   时间:2019-01-18 12:32:07    阅读次数:225
输入字符流--读取文件信息
public static void readFile(){ File file=new File("F:\\CreateDemo\\demo.txt"); if(!file.exists()){ //如果文件不存在,创建并写入信息 createFileAndWriter("Hello I/O!") ...
分类:其他好文   时间:2019-01-18 12:12:28    阅读次数:182
java路径两种写法"/"和"\\"
String path="D:\\新建文件夹\\2.png"; File file=new File(path); System.out.println(file.exists()); String path1="D:/新建文件夹/2.png"; File file1=new File(path); ...
分类:编程语言   时间:2018-12-22 01:37:04    阅读次数:242
TP中的图片水印
$img_dir = ROOT_PATH . 'public/upload/card/' . $data['jt_id']; //创建合成图片存放位置 //自动创建文件夹 if (!file_exists($img_dir)) { mkdir($img_dir, 0755, true); } ... ...
分类:其他好文   时间:2018-12-14 19:28:24    阅读次数:176
IO 流小记录
File类 构造函数: FIle file = new File(path); 常用函数: 是否存在: file.exists() 文件名: file.getName() 父目录: file.getParent() FileInputStream 类 构造方法: InputStream is = n ...
分类:其他好文   时间:2018-12-01 22:13:24    阅读次数:238
java路径两种写法"/"和"\\"以及 ./和../以及/之间的区别?
String path="D:\\新建文件夹\\2.png"; File file=new File(path); System.out.println(file.exists()); String path1="D:/新建文件夹/2.png"; File file1=new File(path); ...
分类:编程语言   时间:2018-11-28 13:18:34    阅读次数:851
GIT提交代码出错File exists.
百度了解决方案 在当前的git bash下执行 然后正常保存本地提交就行了 ...
分类:其他好文   时间:2018-11-01 16:56:16    阅读次数:297
cloudera-scm-agent dead but pid file exists
错误描述: /opt/cm-5.7.0/etc/init.d/cloudera-scm-agent status cloudera-scm-agent dead but pid file exists 查看日志/opt/cm-5.7.0/log/cloudera-scm-agent/cloudera ...
分类:其他好文   时间:2018-10-19 14:06:04    阅读次数:451
git遇到的问题-- Another git process seems to be running in this repository
执行git add .时,报错 fatal: Unable to create '/Users/lily/ForWork/forReBaomai/bm-fe/.git/index.lock': File exists. Another git process seems to be running ...
分类:其他好文   时间:2018-10-16 22:06:22    阅读次数:429
php简单日志写入函数
1 function showLog($content,$filename="filenamelog") 2 { 3 $logfile = 'logs/'.$filename.date('Ymd').'.txt'; 4 if(!file_exists(dirname($logfile))) 5 { ... ...
分类:Web程序   时间:2018-08-29 21:23:59    阅读次数:240
315条   上一页 1 ... 4 5 6 7 8 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!