一级毛片免费不卡在线视频,国产日批视频免费在线观看,菠萝菠萝蜜在线视频免费视频,欧美日韩亚洲无线码在线观看,久久精品这里精品,国产成人综合手机在线播放,色噜噜狠狠狠综合曰曰曰,琪琪视频

Python創(chuàng)建系統(tǒng)目錄的方法 -電腦資料

電腦資料 時(shí)間:2019-01-01 我要投稿
【m.oriental01.com - 電腦資料】

    作者:泥人張 字體:[增加 減小] 類型:轉(zhuǎn)載

    這篇文章主要介紹了Python創(chuàng)建系統(tǒng)目錄的方法,實(shí)例分析了Python操作目錄的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

    本文實(shí)例講述了Python創(chuàng)建系統(tǒng)目錄的方法,

Python創(chuàng)建系統(tǒng)目錄的方法

。分享給大家供大家參考。具體如下:

    Python2 mkdir在沒有上級(jí)目錄時(shí)創(chuàng)建會(huì)失敗.該方法可以創(chuàng)建多級(jí)目錄。

    /temp/gapgers/upload/images/1.png

    如過(guò)temp文件夾不存在,會(huì)創(chuàng)建空的文件夾/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

    希望本文所述對(duì)大家的Python程序設(shè)計(jì)有所幫助,

電腦資料

Python創(chuàng)建系統(tǒng)目錄的方法》(http://m.oriental01.com)。

最新文章