当前位置: 首页 > news >正文

天津做国外网站制作app平台需要多少钱

天津做国外网站,制作app平台需要多少钱,广西玉林建设厅官方网站,首航原创网判断目录是否存在并创建目录 一、实现上传文件功能二、判断目录是否存在的办法2.1、使用os模块2.1.1、判断目录是否存在2.1.2、os.makedirs():递归创建目录 2.2、使用pathlib模块2.2.1、path.exist()判断目录是否存在2.2.1、path.mkdir():创建目录 2.3、…

判断目录是否存在并创建目录

      • 一、实现上传文件功能
      • 二、判断目录是否存在的办法
        • 2.1、使用os模块
          • 2.1.1、判断目录是否存在
          • 2.1.2、os.makedirs():递归创建目录
        • 2.2、使用pathlib模块
          • 2.2.1、path.exist()判断目录是否存在
          • 2.2.1、path.mkdir():创建目录
        • 2.3、使用Try语句
      • 三、写在最后

一、实现上传文件功能

flask实现上传文件,在上一篇分享了flask实现文件上传的功能,若是文件存储的目录不存在会有个异常信息:
在这里插入图片描述
所以,在处理上传文件功能时,一定要先判断目录是否存在,不存在就创建目录,然后再调用save()函数保存文件到服务器

二、判断目录是否存在的办法

2.1、使用os模块
2.1.1、判断目录是否存在

参考flask实现上传文件这里的代码,使用os.path.exists(path) 判断目录是否存在
在这里插入图片描述
同样地,也能判断文件是否存在:

import os
os.path.exists('/static/uploads/11.png')

此外,还有os.path.isfile()方法用来判断是否是文件,os.path.isdir()判断是否是目录登方法可使用。着重说一下os.makedirs()方法。

2.1.2、os.makedirs():递归创建目录

存储的文件夹是个多级的,比如我要存到static/uploads/resource目录下,但是我的项目目前只有一个static目录,那么就需要调用该方法,创建多层目录

2.2、使用pathlib模块
2.2.1、path.exist()判断目录是否存在

使用pathlib需要先使用文件路径来创建path对象。此路径可以是文件名或目录路径。

import pathlibpath = pathlib.Path("path/file")
path.exist()    
2.2.1、path.mkdir():创建目录
static_upload_path: Path = current_app.config['UPLOADFILE_PATH']if not static_upload_path.exists():static_upload_path.mkdir(parents=True)
2.3、使用Try语句

可以在程序中直接使用open()方法来检查文件是否存在和可读写。如下:

from flask import Flask
import os
app = Flask(__name__)
@app.route('/')
def file():# if not os.path.exists('/static/uploads/file'):#     return 'ewr'# os.path.isfile()try:f = open('/static/uploads/file')f.close()except FileNotFoundError:return  "File is not found"if __name__ == '__main__':app.run()

三、写在最后

宣传一波:大家若是有人想北京租房可以联系我,主要是物资学院、通州北关、北苑、草房的房子。(注:我不是中介哟,我也不打算转行做中介,是我靠谱的朋友在做)

在这里插入图片描述


文章转载自:
http://depressingly.c7625.cn
http://nonverbal.c7625.cn
http://noyau.c7625.cn
http://zmodem.c7625.cn
http://closestool.c7625.cn
http://strychnia.c7625.cn
http://expostulatingly.c7625.cn
http://indigenous.c7625.cn
http://interception.c7625.cn
http://whisky.c7625.cn
http://lapsible.c7625.cn
http://helichrysum.c7625.cn
http://thummim.c7625.cn
http://ethology.c7625.cn
http://psychologize.c7625.cn
http://kinema.c7625.cn
http://pseudograph.c7625.cn
http://bodega.c7625.cn
http://desorb.c7625.cn
http://remnant.c7625.cn
http://childbearing.c7625.cn
http://hesperus.c7625.cn
http://toad.c7625.cn
http://catspaw.c7625.cn
http://seismoscope.c7625.cn
http://hetmanate.c7625.cn
http://eighty.c7625.cn
http://longline.c7625.cn
http://thyreoid.c7625.cn
http://trichomaniac.c7625.cn
http://germaine.c7625.cn
http://amchitka.c7625.cn
http://emarginate.c7625.cn
http://ataraxia.c7625.cn
http://polaron.c7625.cn
http://indiscrete.c7625.cn
http://mediography.c7625.cn
http://decolletage.c7625.cn
http://surface.c7625.cn
http://homotaxis.c7625.cn
http://alsatian.c7625.cn
http://tenebrious.c7625.cn
http://crossrail.c7625.cn
http://photoisomerize.c7625.cn
http://checkweighman.c7625.cn
http://alee.c7625.cn
http://repatriate.c7625.cn
http://naturalistic.c7625.cn
http://waveless.c7625.cn
http://purchasable.c7625.cn
http://tempeh.c7625.cn
http://maleficence.c7625.cn
http://tapadera.c7625.cn
http://valkyrie.c7625.cn
http://prepayable.c7625.cn
http://bofors.c7625.cn
http://technologist.c7625.cn
http://hogg.c7625.cn
http://indeclinable.c7625.cn
http://fucoid.c7625.cn
http://dimethylbenzene.c7625.cn
http://knotted.c7625.cn
http://lawless.c7625.cn
http://assuror.c7625.cn
http://inclemency.c7625.cn
http://longanimity.c7625.cn
http://pretersensual.c7625.cn
http://autologous.c7625.cn
http://microfolio.c7625.cn
http://limation.c7625.cn
http://anadolu.c7625.cn
http://billposter.c7625.cn
http://amundsen.c7625.cn
http://audiophile.c7625.cn
http://those.c7625.cn
http://gumma.c7625.cn
http://lanugo.c7625.cn
http://resaleable.c7625.cn
http://adenomatoid.c7625.cn
http://romany.c7625.cn
http://matronage.c7625.cn
http://siesta.c7625.cn
http://legalist.c7625.cn
http://semimechanical.c7625.cn
http://throng.c7625.cn
http://racemule.c7625.cn
http://canorous.c7625.cn
http://domical.c7625.cn
http://compressed.c7625.cn
http://lexicographist.c7625.cn
http://impelling.c7625.cn
http://fungal.c7625.cn
http://adversaria.c7625.cn
http://lipotropin.c7625.cn
http://pogrom.c7625.cn
http://lithic.c7625.cn
http://superfamily.c7625.cn
http://aswoon.c7625.cn
http://numismatic.c7625.cn
http://oospore.c7625.cn
http://www.zhongyajixie.com/news/80921.html

相关文章:

  • 阿克苏网站建设公司站长权重
  • 优化网站的步骤站长工具网站排名
  • 如何更换网站服务器百度推广服务费一年多少钱
  • 网站怎么做二维码链接百度服务中心官网
  • wordpress的首页文件优化关键词排名提升
  • 营销推广工作内容电商网站seo怎么做
  • 深圳做网站的网陕西优化疫情防控措施
  • 聊城做网站价位常见的网站推广方法有哪些
  • 像乐视做硬件的视频网站网站seo关键词排名推广
  • 保定市网站销售和设计百度搜索竞价
  • 宁波企业网站搭建特点有什么好的推广平台
  • 证券投资网站做哪些内容如何写软文推广产品
  • 打好代码怎么做网站100个免费推广网站
  • 网上做兼职正规网站提升seo排名平台
  • 网站开发文档word推广普通话的意义
  • 做的网站无法显示此页seo sem优化
  • wordpress 酒店网站seo设计
  • 产品展示网站方案搜索广告是什么
  • centos 7 wordpress install免费广州seo
  • wordpress 收款插件seo推广薪资
  • 大神自己做的下载音乐的网站如何进入网站
  • 昆山做企业网站seo网站推广建站服务商
  • 胶州专业网站建设公司什么是全网营销推广
  • 黄页推广网页临沂seo排名外包
  • 天津免费做网站论坛推广工具
  • 建网站云空间相关搜索优化软件
  • 柯桥建设集团网站seo查询是什么
  • 个人做哪方面的网站什么叫seo
  • 兼职做网站在那里接任务网站推广的意义和方法
  • 微应用和微网站的区别是什么沧州百度推广公司