日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

在Python中移動目錄結構的方法

系統 1797 0

來源: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.


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 调兵山市| 柏乡县| 锦屏县| 阿拉善右旗| 安丘市| 阳城县| 安康市| 奎屯市| 临澧县| 沭阳县| 图木舒克市| 西贡区| 饶平县| 顺昌县| 商都县| 合江县| 湖州市| 台中市| 天祝| 宁乡县| 墨竹工卡县| 晋州市| 凤冈县| 柘城县| 冀州市| 长泰县| 平江县| 卢氏县| 凤冈县| 巴南区| 宜宾县| 盐亭县| 黎平县| 普陀区| 台江县| 长治县| 邵阳市| 伊春市| 肃北| 宝山区| 广南县|