源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

在Python中移动目录结构的方法

  • 时间:2021-01-10 06:03 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:在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.
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部