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

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

系統 1714 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條評論
主站蜘蛛池模板: 漳州市| 宿迁市| 洪泽县| 海宁市| 盐津县| 达拉特旗| 许昌县| 翁源县| 望江县| 富源县| 兴仁县| 临高县| 平远县| 潜山县| 廉江市| 怀柔区| 宣威市| 邯郸县| 湘潭县| 上犹县| 清水县| 乌拉特后旗| 太谷县| 永顺县| 昭通市| 永平县| 中宁县| 老河口市| 阿勒泰市| 苏尼特左旗| 龙南县| 呼伦贝尔市| 泰兴市| 磐安县| 沾化县| 德清县| 班戈县| 漳浦县| 岳普湖县| 巴南区| 上思县|