Python第四天(基本文件操作)

Python第四天

python创建目录

>>> import os

>>> import shutil

>>> os.mkdir('TEST')


复制文件

>>> shutil.copyfile('test01.py','test02.py')


复制目录

>>> shutil.copytree('TEST','test')


重命名

>>> os.rename('TEST','Test')


移动文件或目录

>>> shutil.move('test','/root')


删除文件

>>> os.remove('/root/test/test01.py')

删除目录(仅空目录)

>>> os.rmdir('/root/test')

删除目录

>>> shutil.rmtree('/root/test')


更换目录

>>> os.getcwd()

'/home/wuang/python'

>>> os.chdir('/home/wuang')

>>> os.getcwd()

'/home/wuang'


你可能感兴趣的:(python,基本操作)