码迷,mamicode.com
首页 >  
搜索关键字:files    ( 13589个结果
在 Windows 上安装 rust环境
1.安装C++环境 rust底层是依赖C环境,所以需要先安装C/C++编译环境, 有两种选择:安装微软的msvc或者安装mingw/cygwin。 如果是新手,不想那么麻烦,可以考虑按The Rust Programming Language里面说的,安装C++ build tools,如下图所示。 ...
分类:Windows程序   时间:2020-05-16 00:46:59    阅读次数:315
js 获取file控件 选中图片的宽高
input file控件选中文件后,转为image对象就ok了 var file = $(e)[0].files[0]; let url = window.URL || window.webkitURL; console.log(url.createObjectURL(file)); //file ...
分类:Web程序   时间:2020-05-15 18:20:10    阅读次数:162
IIS 错误解决:当前标识没有对 Temporary ASP.NET Files 的写访问权限
当前标识 (IIS APPPOOL\.NET v4.5) 没有对”C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files” 的写访问权限。 ...
分类:Web程序   时间:2020-05-15 13:48:02    阅读次数:122
python使用pip安装模块出现ReadTimeoutError: HTTPSConnectionPool的解决方法
今天使用pip安装第三库时,有时会报错: pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out. 使用 ...
分类:编程语言   时间:2020-05-15 13:38:19    阅读次数:92
js 文件的操作
1.用JS创建文件 var fso, f1; fso = new ActiveXObject("Scripting.FileSystemObject"); f1 = fso.CreateTextFile("c:\\testfile.txt", true); 2.用JS创建并写入数据 function ...
分类:Web程序   时间:2020-05-15 11:46:23    阅读次数:60
UNIX - Renaming a File
Unix does not have a command specifically for renaming files. Instead, the mv command is used both to change the name of a file and to move a file int ...
分类:其他好文   时间:2020-05-15 09:41:05    阅读次数:60
UNIX - Copying a File
To make a duplicate copy of a file, use the command cp. For example, to create an exact copy of the file called firstfile, you would type: cp firstfil ...
分类:其他好文   时间:2020-05-15 09:38:36    阅读次数:50
论文翻译:《PRIMES is in P》——素性测试的确定性多项式时间算法研究
这篇论文主要研究素性测试的多项式时间算法,由于没有在网上找到合适的翻译版本,本人自行翻译了一个版本供学习使用。如有错误请指出。 英文原版的论文已打包上传 https://files.cnblogs.com/files/allegro vivace/PrimesinP_original.zip PRI ...
分类:编程语言   时间:2020-05-15 09:20:51    阅读次数:80
windows10安装mysql8.0.19 报VCRUNTIME140_1.dll文件错误和启动错误的解决方法
windows10安装mysql8.0.19 报dll和启动错误的解决方法 1、报 2、正确配置如下:[mysqld]# 设置3306端口port=3306# 设置mysql的安装目录basedir=C:\Program Files\MySQL# 设置mysql数据库的数据的存放目录datadir= ...
分类:数据库   时间:2020-05-14 15:14:07    阅读次数:328
Postgresql安装过程记录
提前下载好安装包: http://get.enterprisedb.com/postgresql/postgresql-12.2-4-windows-x64-binaries.zip 一、确定安装目录 提前创建如下的文件夹 主目录:D:\Program Files\PostgresqlData目录: ...
分类:数据库   时间:2020-05-14 15:12:17    阅读次数:68
13589条   上一页 1 ... 62 63 64 65 66 ... 1359 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!