#1.读本地文件,ANSI为GBK编码 p=open("e:\\a.txt") content=fp.read() print(content) fp.close() #2.读 fp=open("e:\\a.txt","r",encoding="gbk") fp.readlines() fp.clo ...
分类:
编程语言 时间:
2021-01-02 11:43:30
阅读次数:
0
import os import time import shutil def del_file(filepath): """ 删除某一目录下的所有文件或文件夹 """ del_list = os.listdir(filepath) for f in del_list: file_path = os ...
分类:
其他好文 时间:
2020-12-31 11:42:16
阅读次数:
0
问题症状 日志里同时出现正常的日志目录和 IS_UNDEFINED application.properties如下 logging.file.path=logs spring.application.name=mes logback-spring.xml配置 <?xml version="1.0" ...
分类:
编程语言 时间:
2020-12-30 11:23:04
阅读次数:
0
批量修改文件名中相同的字符串#!/usr/bin/envpython#-*-coding:utf8-*-importos#获得文件夹下文件名列表file_path=r"H:\1、Workrelated\app分析范例(1)\pkts\05084-line"file_list=os.listdir(file_path)#选择要重命名的文件夹路径os.chdir(file_path)#使用replac
分类:
编程语言 时间:
2020-12-16 12:09:07
阅读次数:
4
1目标场景经常看到有朋友在闲鱼卖些小东西又或是自己擅长的一些技能,都能为他们带来不错的睡后收入。闲鱼上大量的商品,很难精准判断哪些受欢迎,哪些好卖;一个个录入数据去做数据分析,浪费时间的同时,效率也极其的低效。本篇文章的目的是利用Python自动化来获取某类商品中最好卖的商品以供参考。ps:本文仅限用于技术交流,请勿用于其他用途。2准备工作在编写代码之前,需要做如下准备工作:1、配置好Androi
分类:
编程语言 时间:
2020-12-08 12:04:07
阅读次数:
5
关于ftp上传changeWorkingDirectory()方法的路径切换问题在上传时FTPClient提供了upload方法,对于upload(file,path)的第二个参数path,上传到哪里的这个路径,ftp是利用changeWorkingDirectory()方法来代替CMD中的命令cd的,在对于上传的过程中,path可能不存在,那么就需要来判断是否存在,存在就不创建,不存在就创建,代
分类:
Web程序 时间:
2020-12-04 11:43:26
阅读次数:
17
import configparser base_path = os.getcwd() sys.path.append(base_path) file_path = base_path+" /Config/server.ini" cf = configparser.ConfigParser() cf ...
分类:
其他好文 时间:
2020-11-30 15:29:14
阅读次数:
4
#!/bin/bash # 先备份原来的网卡配置文件 find /etc/sysconfig/network-scripts/ -type f -name "ifcfg*"|xargs cp -t /tmp # 定义要使用的变量 network_file_path=/etc/sysconfig/ne ...
分类:
其他好文 时间:
2020-10-21 21:00:30
阅读次数:
25
#全局查询日志(测试环境化使用) ##配置启用 #my.cnf中 #开启 general_log=1 #记录日志文件的路径 general_log_file=/path/logfile #输出格式 log_output=FILE ##编码启用 set global general_log = 1; ...
分类:
数据库 时间:
2020-09-23 23:23:26
阅读次数:
64
with_nested采用笛卡尔乘积方式,将多个嵌套列表中的元素交叉组合示例:创建多个目录及子目录mkdir-p/testdir/{a,b,c}/{1,2}ansible剧本如下:hosts:jack6_1remote_user:rootgather_facts:notasks:file:path:"/testdir"state:directoryfile:path:"
分类:
其他好文 时间:
2020-09-17 16:54:16
阅读次数:
24