本文从增删改查角度,演示几种常用的 Python 目录操作
前提:引入os 模块, import os
创建目录
In [10]: ls
ambari_customization/ mylovelycodes/ tensorflow-cuda.whl* video/
bak_ambari-web/ tensorflow-cuda-mkl.whl* tensorflow.whl*
In [11]: os.mkdir("test")
In [12]: ls
ambari_customization/ mylovelycodes/ tensorflow-cuda.whl* test/
bak_ambari-web/ tensorflow-cuda-mkl.whl* tensorflow.whl* video/
查看目录内容
In [20]: os.listdir("./")
Out[20]:
['test',
'ambari_customization',
'bak_ambari-web',
'tensorflow-cuda-mkl.whl',
'tensorflow.whl',
'tensorflow-cuda.whl',
'mylovelycodes',
'video']
修改目录名字 test->newname
In [21]: os.rename("test","newname")
In [22]: os.listdir("./")
Out[22]:
['ambari_customization',
'bak_ambari-web',
'newname',
'tensorflow-cuda-mkl.whl',
'tensorflow.whl',
'tensorflow-cuda.whl',
'mylovelycodes',
'video']
删除文件名
In [23]: os.rmdir("newname")
In [24]: os.listdir("./")
Out[24]:
['ambari_customization',
'bak_ambari-web',
'tensorflow-cuda-mkl.whl',
'tensorflow.whl',
'tensorflow-cuda.whl',
'mylovelycodes',
'video']
同步于我的csdn: http://blog.csdn.net/stepbystepto/article/details/78988024
网友评论