91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中怎么創建目錄

發布時間:2021-07-05 17:07:32 來源:億速云 閱讀:163 作者:Leah 欄目:編程語言

Python中怎么創建目錄,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

首先,列出一個目錄的內容:

view plaincopy to clipboardprint?  import os   for fileName in os.listdir ( '/' ):   print fileName   import os  for fileName in os.listdir ( '/' ):

print fileName正如你所見,這很簡單,用三行代碼就可以完成。
創建目錄也很簡單:

view plaincopy to clipboardprint?  import os   for fileName in os.listdir ( '/' ):   print fileName   import os  for fileName in os.listdir ( '/' ):

刪除剛才創建的Python目錄:也可以創建多級目錄:

view plaincopy to clipboardprint?  import os   os.makedirs ( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )   import os  os.makedirs ( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )

如果沒有在創建的文件夾中添加任何東西,就可以一次性將它們全部刪除(即,刪除所列的所有空文件夾):

view plaincopy to clipboardprint?  import os   os.removedirs( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )   import os  os.removedirs ( 'I/will/show/you/how/deep/the/rabbit/hole/goes' )

當需要對一個特定的文件類型進行操作時,我們可以選擇“fnmatch”模塊。以下是顯示“.txt”文件的內容和“.exe”文件的文件名:

view plaincopy to clipboardprint?  import fnmatch   import os   for fileName in os.listdir ( '/' ):   if fnmatch.fnmath ( fileName, '*.txt' ):   print open ( fileName ).read()   elif fnmatch.fnmatch ( fileName, '*.exe' ):   print fileName   import fnmatch  import os  for fileName in os.listdir ( '/' ):  if fnmatch.fnmath ( fileName, '*.txt' ):  print open ( fileName ).read()  elif fnmatch.fnmatch ( fileName, '*.exe' ):  print fileName“*”

字符可以表示任意長度的字符。如果要匹配一個字符,則使用“?”符號:

view plaincopy to clipboardprint?  import fnmatch   import os   for fileName in os.listdir ( '/' ):   if fnmatch.fnmatch ( fileName, '?.txt' ):   print 'Text file.'   import fnmatch  import os  for fileName in os.listdir ( '/' ):  if fnmatch.fnmatch ( fileName, '?.txt' ):  print 'Text file.'“fnmatch”

關于Python中怎么創建目錄問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜兴市| 屯门区| 习水县| 岱山县| 阿城市| 洪洞县| 涪陵区| 富裕县| 蓬安县| 友谊县| 广州市| 龙江县| 壤塘县| 布尔津县| 新昌县| 松桃| 大同县| 德保县| 霸州市| 盘锦市| 弋阳县| 崇义县| 望谟县| 襄樊市| 孝昌县| 漳州市| 安国市| 报价| 万源市| 札达县| 新龙县| 阜南县| 五寨县| 丹棱县| 阿巴嘎旗| 盖州市| 荣昌县| 宝山区| 临高县| 房产| 龙井市|