python系统目录_Python创建系统目录的方法
本文實例講述了Python創建系統目錄的方法。分享給大家供大家參考。具體如下:
Python2 mkdir在沒有上級目錄時創建會失敗.該方法可以創建多級目錄。
/temp/gapgers/upload/images/1.png
如過temp文件夾不存在,會創建空的文件夾/temp/gapgers/upload/images/以及空文件1.png。
該方法只做拋磚引玉,大神勿噴
代碼如下:
import os
def mkfilePower(path):
'''create dirs if the path contain a file create a empty file
if the dir's file is exist return False else return True
ex:path = r'c:/temp/gapgers/upload/images/1.png'
nomatter there have dir temp or not,we will create it and create a empty file 1.png
'''
paths = path.split('/')
temppath = ''
for index,_spilt in enumerate(paths):
if index == 0:
temppath = _spilt
continue
temppath = temppath + '/' + _spilt
if os.path.isdir(temppath):
pass
elif index == len(paths)-1:
if os.path.isfile(temppath):
return False
fl = open(temppath,'w')
fl.close()
else:
os.mkdir(temppath)
return True
希望本文所述對大家的Python程序設計有所幫助。
本條技術文章來源于互聯網,如果無意侵犯您的權益請點擊此處反饋版權投訴
本文系統來源:php中文網
總結
以上是生活随笔為你收集整理的python系统目录_Python创建系统目录的方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: badboy录制乱码_Badboy 录制
- 下一篇: python sftp模块_python