码迷,mamicode.com
首页 >  
搜索关键字:accept files    ( 17113个结果
Mac OS-用rename命令批量修改文件名
没啥好说的。直接上步骤吧。Mac上没有自带rename命令,所以得先安装rename命令 1、brew install rename 2、批量修改文件名,语法格式: rename 's/stringx/stringy/' files 把 *.txt 文件中的 `你有啥` 全部改成 `我有啥` dem ...
分类:系统相关   时间:2021-02-05 10:29:22    阅读次数:0
在用Android StudioBuild项目时,提示:Could not resolve all files for configuration ':classpath'.Could not find com.android.tools.
在用Android StudioBuild项目时,提示:Could not resolve all files for configuration ':classpath'.Could not find com.android.tools. Error:Gradle: A problem occur ...
分类:移动开发   时间:2021-02-03 11:01:45    阅读次数:0
文件上传新方式 files 对象创建
// 读取文件base64 编码方式 var readerRes = fs.readFileSync(rp + 'ext_blocks\\userLib\\' + sessionStorage.checkLib + ".zip", "Base64") function base64toBlob(ba ...
分类:Web程序   时间:2021-02-03 10:40:28    阅读次数:0
cmake 使用技巧
Visual Studio 2019 典型项目 https://github.com/fmtlib/fmt 默认会在C盘 C:\Program Files (x86) cmake 我没用管理员权限 所以安装会失败 configure 后 一些目录成了固定的想修改 CMAKE_INSTALL_PREF ...
分类:其他好文   时间:2021-02-02 10:52:59    阅读次数:0
iptables 如何添加流量限制
设置规则 iptables -A FORWARD -d 10.0.0.100 -m quota --quota 1024 -j ACCEPTiptables -A FORWARD -d 10.0.0.100 -j DROP 添加流量限制100G iptables -I FORWARD -d 10.0 ...
分类:其他好文   时间:2021-02-02 10:52:22    阅读次数:0
maven换源&反序列化字节转换工具
#1、maven换源 apache-maven-3.5.2\conf 目录中的 settings.xml 文件、 修改maven 本地仓库地址 D:\Program Files创建文件夹MavenRepository ; 找到settings.xml 文件中 打开注释修改如下: D:\Program ...
分类:其他好文   时间:2021-02-01 12:50:48    阅读次数:0
docker 安装SqlServer2019
1.拉取 docker pull mcr.microsoft.com/mssql/server:2019-latest 2.查看镜像 docker images 3.配置密码启动容器,据说密码要配置的复杂一点 docker run -e ACCEPT_EULA=Y -e SA_PASSWORD=xx ...
分类:数据库   时间:2021-02-01 12:28:29    阅读次数:0
idea eslint 配置
1. TypeError: this.CliEngine is not a constructor 点击 details,找到报错文件位置,如: D:\Program Files\JetBrains\IntelliJ IDEA 2017.3.7\plugins\JavaScriptLanguage\ ...
分类:其他好文   时间:2021-02-01 11:57:58    阅读次数:0
shell 解压当前目录所有zip文件
code macname@MacdeMacBook-Pro zipfiles % cat test.sh #!/bin/bash ZIP_FILES=$(ls *.zip) for zip_file in $ZIP_FILES; do unzip $zip_file done macname@Mac ...
分类:系统相关   时间:2021-02-01 11:49:14    阅读次数:0
Windows进程间通讯(IPC)----套接字
Windows套接字 Windows套接字即socket,通过socket可以实现在不同的进程间通信,甚至这两个进程可以不在同一个计算机中。 Winsock使用步骤 服务端 socket初始化 创建套接字 绑定和监听端口 因为是本地连接,所以监听地址为0.0.0.0。 接着就调用accept()接收 ...
分类:Windows程序   时间:2021-01-30 11:55:34    阅读次数:0
17113条   上一页 1 ... 15 16 17 18 19 ... 1712 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!