rm -rf python 實現 v0.1

來源:互聯網
上載者:User

標籤:move   rem   style   import   split   def   std   節點   span   

#coding=utf-8import osdef join(arr,join_falg):    res = ""    for a in  arr:        res += a+join_falg    return resdef get_file_parats(file):    path_arr = file.split("/")    last_index = file.rindex("/")    parents_path = file[:last_index]    return parents_path#遞迴建立檔案夾def file_mkdir2(file):    dirs = file.split("/")    for i in range(1,len(dirs)+1):        d = join(dirs[:i],"/")        if not os.path.exists(d):            os.mkdir(d)#file_mkdir2("../file/testdir5/inner/8/2/3/4/5")#刪除所有葉子節點的檔案def rm_dirs(path,path0):    if not os.path.exists(path):        print("***"+path)        return    if os.path.isfile(path):        print("A"+path)        os.remove(path)    else:        dirs = os.listdir(path)        for d in dirs:            cur_path = path+"/"+d            if not os.path.exists(cur_path):                print("XXX "+cur_path)                continue            if os.path.isfile(cur_path):                print("C"+cur_path)                os.remove(cur_path)            elif len(os.listdir(cur_path))==0:                print("D"+cur_path)                os.rmdir(cur_path)            else:                rm_dirs(cur_path,path0)    if len(os.listdir(path)) == 0:        print("B"+path)        os.rmdir(path)    if path!=path0:        rm_dirs(path,path0)rm_dirs("../file/testdir5/inner","../file/testdir5/inner")

 

rm -rf python 實現 v0.1

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.