码迷,mamicode.com
首页 >  
搜索关键字:no such file or dire    ( 51119个结果
QT之XML的解析与生成
1、解析 QFile file(ui->comboBox->currentText()); //打开文件 bool isOK = file.open(QIODevice::ReadOnly | QIODevice::Text); if(isOK){ QXmlStreamReader reader(& ...
分类:其他好文   时间:2021-05-24 09:30:13    阅读次数:0
Python os 批量修改文件名
# -*- coding: utf-8 -*-import os#设定文件路径path=r'D:\郭鹏历届真题解析2007-2020'i=1#对目录下的文件进行遍历for file in os.listdir(path):#判断是否是文件 file_name=os.path.join(path,fi ...
分类:编程语言   时间:2021-05-24 09:25:18    阅读次数:0
Django关于数据库的对接操作
对近期的数据库配置进行一个记录,方便我以后查阅。 我的Django项目配备的是Mysql的数据库,平时使用的工具是VS Code,推荐安装Mysql插件,效果不错: 下面是在项目的setting.py中配置的Mysql连接数据: DATABASES = { 'default': { 'ENGINE' ...
分类:数据库   时间:2021-05-24 09:06:47    阅读次数:0
MySQL 批量删除表
select concat('drop table ',table_name,';') from information_schema.tables where table_schema='employees' and table_name rlike '^d.*$' into outfile 'd ...
分类:数据库   时间:2021-05-24 08:59:21    阅读次数:0
windows 文件,文件夹操作
1.C标准的文件读写 可移植性强(跨平台) 1 FILE* pFile = nullptr; 2 const char* pcFilePath = ".//1.text"; 3 4 //文件写 5 errno_t err = fopen_s(&pFile, pcFilePath, "ab"); 6 ...
分类:Windows程序   时间:2021-05-24 08:18:38    阅读次数:0
h5端 input file accept限制类型的话会无法调用相机
在做h5上传照片功能时,对照片格式做了以下限制 <input type="file" accept="image/png,image/jpg,image/jpeg" > 但在微信浏览器中,这种写法会无法调用相机,从而直接进入图库 accept="image/*就是正常的 可以把accept="ima ...
分类:其他好文   时间:2021-05-24 07:03:49    阅读次数:0
获取手机尺寸
[获取手机尺寸](https://www.runoob.com/try/try.php?filename=tryjs_screen_all) ...
分类:移动开发   时间:2021-05-24 06:52:54    阅读次数:0
CentOS文件描述符
在生产上部署的Ocelot,,ESTABLISHED到达3000后会不间断出现内部服务器错误及too many file等类似字样错误,经排查,因最近进行了服务器迁移,导致部文件描述符部分没有进行配置,进行配置后,故障恢复。整理如下: 一、系统最大文件描述符 查看系统最大文件描述符 cat /pro ...
分类:其他好文   时间:2021-05-24 06:29:41    阅读次数:0
原生input type 为file 时的各参数
原生input 类型为file时需要对不同参数做出调整 <input type="file" name="file" id="file" accpet=".doc,.docx,application/msword,application/vnd.openxmlformats-officedocume ...
分类:其他好文   时间:2021-05-24 06:06:15    阅读次数:0
原生input 为file时修改基础样式(利用label进行修改)
修改原生Input 的 file输入框的样式 此处使用了障眼法用以实现与element的相同样式 1.在HTML中使用时可以通过input的label进行快捷的输入框调用 <div> <label for="file" style="position: absolute;"> <div class= ...
分类:其他好文   时间:2021-05-24 06:04:34    阅读次数:0
51119条   上一页 1 ... 23 24 25 26 27 ... 5112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!