码迷,mamicode.com
首页 >  
搜索关键字:file_exists    ( 315个结果
Emgu-WPF学习使用 - 颜色映射
原文:Emgu-WPF学习使用 - 颜色映射 string sFile = ""; if (!String.IsNullOrEmpty(AppConstUtils.GDefaultFile) && File.Exists(AppConstUtils.GDefaul... ...
分类:Windows程序   时间:2018-08-14 11:38:37    阅读次数:308
halcon
FilePath:='d:/pic/demo.jpg' *判断文件是否存在 file_exists ('/bin/cc', FileExists) if(FileExists) *读取图片 read_image(Image,FilePath) *写入图片,第三个参数是填充值 write_image( ...
分类:其他好文   时间:2018-07-23 17:18:46    阅读次数:811
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-07-19 13:55:26    阅读次数:168
java删除文件夹
private static void deleteFile(File file) { if (file.exists()) // 判断文件是否存在 return; if (file.isFile()) {// 判断是否是文件 file.delete();// 删除文件 } else if (fil... ...
分类:编程语言   时间:2018-07-18 14:24:14    阅读次数:160
failed to create pid file /var/run/rsyncd.pid: File exists报错
[root@pcidata-jenkins ansible_playbooks]# ps aux|grep rsyncroot 1799 0.0 0.0 114652 480 ? Ss Jun29 0:00 rsync --daemonroot 61754 0.0 0.0 112664 972 pt ...
分类:其他好文   时间:2018-07-11 15:05:20    阅读次数:398
ob 函数的使用
ob 函数的使用1. 页面静态化$id = isset($_GET['id'])?$_GET['id']-0:0; $filename = "html/".date("Ymd")."/news-id".$id.".html"; if(!file_exists("html/".date("Ymd")) ...
分类:其他好文   时间:2018-06-16 15:14:53    阅读次数:214
在相应目录下新建或读取xml文件
string path = AppDomain.CurrentDomain.BaseDirectory+"UserContent1.xml"; //判断相应路径下文件是否存在 不存在的情况下就新建 if (!File.Exists(path)) { File.Create(path); ... ...
分类:其他好文   时间:2018-06-09 16:42:11    阅读次数:118
php文件转base64
代码:<?phpfunctionfiletobase64($file){$base64file=‘‘;if(file_exists($file)){$finfo=finfo_open(FILEINFO_MIME_TYPE);$mimetype=finfo_file($finfo,$file);finfo_close($finfo);$base64data=base64_encode(file
分类:Web程序   时间:2018-06-05 11:37:45    阅读次数:179
zabbix以trapper监控备份文件
需求:生产上有台mysql服务器每天以定时任务方式用mysqldump命令进行数据库逻辑备份,定时任务执行时间为23:30,备份时长5分钟左右,生成的备份文件命名方式为‘mysql-$(date+%Y-%m-%d).sql’,大小3G左右,备份文件保留3份,即执行完mysqldump命令后对大前天备份文件进行删除操作,现要对备份文件进行检查监控。定时任务方式1.模拟生产备份文件[root@zabb
分类:移动开发   时间:2018-06-01 18:14:07    阅读次数:269
PHP、thinkPHP5.0开发网站文件管理功能(三)编辑文件
public function edit(){ $file = iconv('UTF-8','GB2312',urldecode(input('file'))); if(empty($file)|| !file_exists($file)){ $this->error('操作异常'); } $arr... ...
分类:Web程序   时间:2018-05-24 18:20:33    阅读次数:750
315条   上一页 1 ... 5 6 7 8 9 ... 32 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!