sys和shutil

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sys和shutil相关的知识,希望对你有一定的参考价值。

import sys
sys.argv #运行脚本是读取命令后的参数
sys.exit() #退出程序
print(sys.version)#获取python解释器当前版本
sys.maxint() #最大的int值
sys.path #返回模块的搜索路径
sys.platform #返回操作系统平台的名称
sys.stdout.write("please") #在屏幕上输出
print(os.path.abspath("name.tar")) #查看文件路径

import shutil #读取文件写入到另一个文件
f1=open("text.txt")
f2=open("笔记1","w")
shutil.copyfileobj(f1,f2)

shutil.copyfile("笔记1","笔记2") #copy文件
shutil.copystat("text.txt","笔记2") #copy 权限没有创建新的文件
shutil.copy() #拷贝文件和权限
shutil.copy2() #拷贝文件和状态信息
shutil.copytree("time_test","new_test") #拷贝文件目录
shutil.rmtree("new_test") #删除文件目录

shutil.make_archive("D:/timetttttt_tp","zip","C:Usersarce.PyCharmCE2017.2") #需要被压缩文件,压缩的格式,压缩文件放哪里
make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0, dry_run=0, owner=None, group=None, logger=None)

import zipfile

z=zipfile.ZipFile("os_txt.zip","w") #单独压缩文件(创建压缩包,把文件放进去)
z.write("os.txt.py")
print("---")
z.write("笔记2")
z.close()

z=zipfile.ZipFile("os_txt.zip","r") #解压缩
z.extractall()
z.close()

##############################################

import tarfile
tar=tarfile.open("name.tar","w")
tar.add(r"E:2018.4.9测试用",arcname="测试用")
tar.add(r"E:2018.4.9模块三",arcname="模块三")

tar.close()

tar=tarfile.open("name.tar","r")
tar.extractall() #此处括号内填写解压到什么地方(路径)
tar.close()

import os
print(os.path.abspath("name.tar")) #查看文件路径

以上是关于sys和shutil的主要内容,如果未能解决你的问题,请参考以下文章

python处理文件和文件的方法(shutil,filecmp ,MD5,tarfile,zip)

R语言sys方法:sys.info函数获取系统和用户信息sys.localeConv函数获取当前区域中的数字和货币表示的详细信息sys.setFileTime函数更改文件的时间

sys.col$ 和 sys.coltype$ 的区别

os和sys模块

sys和shutil

Python模块——sys和os