51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#找不到文件
禅道导出的CSV文件打开为乱码的解决方法
先用word打开,选择unicode(utf-8),见下图,点击确定,打开bug文件, 接下来 保存。再用Excel打开即可! ...
代码星球
·
2020-11-02
禅道
导出
CSV
文件
打开
python 获取文件拓展名
importosa='var/label/txt/123.txt'print(os.path.splitext(a))b='var/label/txt/123'print(os.path.splitext(b)) 输出('var/label/txt/123','.txt')('var/...
代码星球
·
2020-11-02
python
获取
文件
拓展
pyqt 打包为dmg文件
pyqthttps://blog.csdn.net/quantam/article/details/90267824http://code.py40.com/pyqt5/26.htmlpyqt打包为dmghttps://www.zhihu.com/question/28374491/answer/84585...
代码星球
·
2020-11-02
pyqt
打包
dmg
文件
python 命令行读取json文件
macname@bogontestenv3.7%catfile.json{"code":200,"msg":"请求成功","data":{"username":"abc","mobile":"18611751121"},"task":[{"username":"abc1","mobile":"1861175...
代码星球
·
2020-11-02
python
命令行
读取
json
文件
python3 ini文件读写
importconfigparserconfig=configparser.ConfigParser()file='config.ini'config.read(file)config.add_section('login')config.set('login','username','1111')conf...
代码星球
·
2020-11-01
python3
ini
文件
读写
Windows 解压mac压缩文件包错
http://soft.onlinedown.net/soft/262535.htm...
代码星球
·
2020-11-01
Windows
解压
mac
压缩
文件包
Windows快速批量删除大量文件的命令
命令分别如下:rmdir[drive:]path[/S][/Q]del[drive:]path[/S][/Q]其中rmdir与rd命令相同。/S表示除目录本身外,还将删除指定目录下的所有子目录和文件。/Q表示安静模式,删除时不需要经过确认。如删除D:emp目录下的所有文件的写法如下:rmdird:emp/S...
代码星球
·
2020-11-01
Windows
快速
批量
删除
大量
django 下载文件,指定文件中文名称
Content-disposition是MIME协议的扩展,MIME协议指示MIME用户代理如何显示附加的文件。Content-disposition其实可以控制用户请求所得的内容存为一个文件的时候提供一个默认的文件名,文件直接在浏览器上显示或者在访问时弹出文件下载对话框。Content-Dispositi...
代码星球
·
2020-11-01
文件
django
下载
指定
中文
File Browser文件资源服务器
要是想一键启动的,这里有个封装版本的,上传到服务器,执行sh命令就能直接启动,也可以修改配置链接:https://pan.baidu.com/s/1oVP5DrEQSV9hQmnF2bzM9A提取码:gjh8nohup/opt/filemanager/filemanager>/opt/filemana...
代码星球
·
2020-11-01
File
Browser
文件
资源
服务器
HTML引入外部JS文件
<!--引入外部文件的方式--><script type="text/javascript" src="attack.js"></script> //attack.js代码functionattackEnemy(){document.writ...
代码星球
·
2020-11-01
HTML
引入
外部
JS
文件
gcc 编译c++文件
#include<stdio.h>//将类定义在命名空间中namespaceDiy{classStudent{public:char*name;intage;floatscore;public:voidsay(){printf("%s的年龄是%d,成绩是%f",name,age,score);}...
代码星球
·
2020-11-01
gcc
编译
c++
文件
python 获取文件运行路径
importosprint(os.getcwd())print("/".join(os.path.dirname(os.path.abspath(__file__)).split("/")))bogon:testdirmacname$pwd/Users/macname/Desktop/testdirbogo...
代码星球
·
2020-11-01
python
获取
文件
运行
路径
shell 输出文件各行的长度
test.sh#!/bin/bashstring="hello,shell,split,test"array=(${string//,/})forvarin${array[@]}doecho$vardone输出bogon:confmacname$awk'{printlength($0)}'test.sh11...
代码星球
·
2020-11-01
shell
输出
文件
行的
长度
shell 给文件每一行都添加指定字符串
[admin@localhostfile]$catfilehello0hello1hello2hello3hello4[admin@localhostfile]$cattest.sh#!/bin/bashwhilereadlinedoecho'buy'$linedone<file>>fil...
代码星球
·
2020-11-01
shell
文件
每一
行都
添加
shell 文件的包含
使用.或者source api.shfunctionintadd(){letdata=$1+$2echo$data}test.sh#!/bin/bash.api.shreadd1d2ret=$(intadd$d1$d2)echo$retsourceapi.shreadd1d2res=$(intad...
代码星球
·
2020-11-01
shell
文件
包含
首页
上一页
...
110
111
112
113
114
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他