在Python中移动目录结构的方法
更新时间:2016年01月31日 21:41:30 投稿:mdxy-dxy
这篇文章主要介绍了在Python中移动目录结构的方法,需要的朋友可以参考下
来源:http://stackoverflow.com/questions/3806562/ways-to-move-up-and-down-the-dir-structure-in-python
#Moving up/down dir structure print os.listdir('.') # current level print os.listdir('..') # one level up print os.listdir('../..') # two levels up # more complex example: # This will walk the file system beginning in the directory the script is run from. It # deletes the empty directories at each level for root, dirs, files in os.walk(os.getcwd()): for name in dirs: try: os.rmdir(os.path.join(root, name)) except WindowsError: print 'Skipping', os.path.join(root, name)
This will walk the file system beginning in the directory the script is run from. It deletes the empty directories at each level.
相关文章
Python基础教程(一)——Windows搭建开发Python开发环境
这篇文章主要介绍了Windows如何搭建开发Python开发环境,帮助大家开始学习Python,感兴趣的朋友可以了解下2020-07-07pycharm2022没有manage repositories配置镜像源的解决方法
本文主要介绍了pycharm2022没有manage repositories配置镜像源的解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2023-02-02
最新评论