码迷,mamicode.com
首页 >  
搜索关键字:accept files    ( 17113个结果
【Python】图片有效性管理
# -*- coding: UTF-8 -*- import os import imghdr def get_filelist(dir): for home, dirs, files in os.walk(dir): for filename in files: try: fullname = o ...
分类:编程语言   时间:2021-02-26 13:35:43    阅读次数:0
获得程序窗体标题-FindWindowW需要的参数
1.使用spy++,安装vs c++核心功能才会有,在以下路径 C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\Tools 2.点击工具栏 查找窗口,拖动放到要查找的程序上,点击确定 3. 点击确定 4. ...
分类:Windows程序   时间:2021-02-26 12:59:36    阅读次数:0
Jenkins 自动化部署sh参考
#!/bin/bash -ilex #服务名称 SERVER_NAME=project-name 源jar路径,mvn打包完成之后,target目录下的jar包名称,也可选择成为war包,war包可移动到Tomcat的webapps目录下运行,这里使用jar包,用java -jar 命令执行 JAR ...
分类:其他好文   时间:2021-02-25 12:21:35    阅读次数:0
MySQL提示Client does not support
以管理员身份运行cmd(Windows) cd C:\Program Files\MySQL\MySQL Server 8.0\bin mysql -uroot -proot ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_pas ...
分类:数据库   时间:2021-02-24 13:16:05    阅读次数:0
Win10 JDK的环境变量配置,以及没有jre文件
一、JDK下载和安装 下载地址:https://www.oracle.com/java/technologies/javase-downloads.html 当前版本为:jdk-15.0.2_windows-x64_bin,安装过程可以直接默认安装,本人安装目录为:E:\Program Files\ ...
分类:Windows程序   时间:2021-02-23 14:01:05    阅读次数:0
Java开发常用的dos命令
在介绍Java Dos命令之前,先介绍几个常用的Windows Dos命令 cd → 指定目录 cd.. → 返回上级目录 cd/ → 返回到根目录 dir → 列出当前目录下的所有文件夹和文件 md → 创建目录 rd → 删除目录 del → 删除目录下的所有文件(子目录的文件不会被删除) re ...
分类:编程语言   时间:2021-02-22 12:45:15    阅读次数:0
网页添加live2D萌妹
在【设置】页面下方找到【博客侧边栏公告(支持HTML代码) (支持 JS 代码)】这项,然后加入以下代码: <script type="text/javascript" charset="utf-8" src="https://files.cnblogs.com/files/liuzhou1/L2D ...
分类:Web程序   时间:2021-02-22 12:09:47    阅读次数:0
NX CAM二次开发-UF_CAMGEOM_append_items设置检查体
NX9+VS2012 #include <uf.h> #include <uf_ui.h> #include <uf_ui_ont.h> #include <uf_camgeom.h> static int select_filter_proc_fn(tag_t object, int type[3 ...
分类:移动开发   时间:2021-02-20 12:37:26    阅读次数:0
cmake官方文档-相关概念
1. listfile (列表文件,即CMakeLists.txt) https://cmake.org/cmake/help/v3.19/manual/cmake-gui.1.html CMake is a cross-platform build system generator. Projec ...
分类:其他好文   时间:2021-02-20 12:32:02    阅读次数:0
How to see log files in MySQL?
原文链接: https://stackoverflow.com/questions/5441972/how-to-see-log-files-in-mysql To enable error log add following [mysqld_safe] log_error=/var/log/mys ...
分类:数据库   时间:2021-02-20 12:19:06    阅读次数:0
17113条   上一页 1 ... 12 13 14 15 16 ... 1712 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!