摘要:
#导入shutil模块和os模块 import shutil,os #复制单个文件 shutil.copy("C://a//1.txt","C://b") #复制并重命名新文件 shutil.copy("C://a//2.txt","C://b//121.txt") #复制整个目录(备份) shut 阅读全文
摘要:
fileHandle = open ( 'G:/qqfile/1.txt','w' )fileHandle.write('abcd')#写文件 地址要用反斜杠fileHandle.close()fileHandle = open ( 'G:/qqfile/1.txt' )print (fileHan 阅读全文
摘要:
import osimport os.pathrootdir = r"C:\Users\leiyi\Desktop\1" # 指明被遍历的文件夹#要加上r,否则会报错(unicode error) 'unicodeescape' codec can't decode bytes in positio 阅读全文