第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在 python 中一次為 Windows 創(chuàng)建多個(gè)文件夾

如何在 python 中一次為 Windows 創(chuàng)建多個(gè)文件夾

蕭十郎 2023-05-23 16:16:23
嘿,我是編程新手,誰能幫我指明正確的方向?我正在嘗試為一個(gè)排序程序?qū)⒍鄠€(gè)文件夾放在一個(gè)文件夾中,幾乎是在檢查文件夾是否存在,以及它是否不以文件類型命名的文件夾進(jìn)行排序。我在查找它并找到了一些代碼,但我不明白它正在寫入計(jì)算機(jī)的哪個(gè)位置。這是我在網(wǎng)上找到的代碼:import os# define the name of the directory to be createdpath = "/tmp/year/month/week/day"try:    os.makedirs(path)except OSError:    print ("Creation of the directory %s failed" % path)else:    print ("Successfully created the directory %s" % path)
查看完整描述

2 回答

?
慕碼人8056858

TA貢獻(xiàn)1803條經(jīng)驗(yàn) 獲得超6個(gè)贊

要?jiǎng)?chuàng)建多個(gè)文件夾,請創(chuàng)建文件夾名稱列表并設(shè)置父文件夾的路徑:


import os


# define the name of the directory to be created

path = r"D:\test"

lst_folders = [r"Folder_A", r"Folder_B", r"Folder_C"]


for new_folder in lst_folders:

    print(new_folder)

    path_new = os.path.join(path, new_folder)

    

    try:

        os.makedirs(path_new)

    except OSError:

        print ("Creation of the directory %s failed" % path)

    else:

        print ("Successfully created the directory %s" % path)


查看完整回答
反對(duì) 回復(fù) 2023-05-23
?
慕斯709654

TA貢獻(xiàn)1840條經(jīng)驗(yàn) 獲得超5個(gè)贊

也試試這個(gè)


import os


path = "parent"


for new in range(5):

    print(f'{path}/child_{new}')

    try:

        os.makedirs(f'{path}/child_{new}')

    except OSError:

        print ("Creation of the directory %s failed" % path)

    else:

        print ("Successfully created the directory %s" % path)


查看完整回答
反對(duì) 回復(fù) 2023-05-23
  • 2 回答
  • 0 關(guān)注
  • 224 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)