Python判断文件和文件夹是否存在的方法


Posted in Python onMay 21, 2015

一、python判断文件和文件夹是否存在、创建文件夹

>>> import os

>>> os.path.exists('d:/assist')

True

>>> os.path.exists('d:/assist/getTeacherList.py')

True

>>> os.path.isfile('d:/assist')

False

>>> os.path.isfile('d:/assist/getTeacherList.py')

True

>>> os.makedirs('d:/assist/set')

>>> os.path.exists('d:/assist/set')

True

二、python判断文件是否存在

import os

 

filename = r'/home/tim/workspace/test.txt'

if os.path.exists(filename):

    message = 'OK, the "%s" file exists.'

else:

    message = "Sorry, I cannot find the "%s" file."

print message % filename

三、如何用Python判断文件是否存在

使用os.path.exists()方法可以直接判断文件是否存在。

代码如下:

>>> import os

>>> os.path.exists(r'C:\1.TXT')

False

>>>

如果存在返回值为True,如果不存在则返回False

四、python判断文件夹是否存在

$ python

Python 2.7.3 (default, Jan  2 2013, 16:53:07) 

[GCC 4.7.2] on linux2

Type "help", "copyright", "credits" or "license" for more information.

>>> import os

>>> 

>>> 

>>> tobecheckdir = r'/home/tim/workspace'

>>> os.path.isdir(tobecheckdir)

True

>>>

五、python检查文件是否存在,以及路径是否为文件

在写文件之前通常需要检查文件路径是否可写:

from os import path, access, R_OK  # W_OK for write permission.
PATH='./file.txt'
if path.exists(PATH) and path.isfile(PATH) and access(PATH, R_OK):

    print "File exists and is readable"

else:

    print "Either file is missing or is not readable"

你也可以通过下面的方式实现:
def file_exists(filename):

    try:

        with open(filename) as f:

            return True

    except IOError:

        return False

六、python判断文件和文件夹是否存在

import os 

os.path.isfile('test.txt') #如果不存在就返回False 

os.path.exists(directory) #如果目录不存在就返回False

七、os.path.lexist

还有os.path.lexists(path)
对broken的link file也返回True.

八、python FTP判断文件夹是否存在

python怎样判断文件夹是否存在?广大网友给出了答案:
使用ftp库就可以了,下面是Python核心编程上的例子:

>>> from ftplib import FTP

>>> f = FTP('ftp.python.org')

>>> f.login('anonymous', 'guido@python.org')

'230 Guest login ok, access restrictions apply.'

>>> f.dir()

dir结果中无此文件,就是不存在。
或者如下:
try:

f.retrbinary('RETR %s' % FILE,open(FILE, 'wb').write)

except ftplib.error_perm:

print 'ERROR: cannot read file "%s"' % FILE 40 os.unlink(FILE)

不能读此文件,也视为不存在。
Python 相关文章推荐
Python的dict字典结构操作方法学习笔记
May 07 Python
Python更新数据库脚本两种方法及对比介绍
Jul 27 Python
PyQt5 实现字体大小自适应分辨率的方法
Jun 18 Python
Ubuntu+python将nii图像保存成png格式
Jul 18 Python
通过实例学习Python Excel操作
Jan 06 Python
Python爬虫库requests获取响应内容、响应状态码、响应头
Jan 25 Python
windows下Pycharm安装opencv的多种方法
Mar 05 Python
python 数据库查询返回list或tuple实例
May 15 Python
基于Python中random.sample()的替代方案
May 23 Python
利用PyQt5+Matplotlib 绘制静态/动态图的实现代码
Jul 13 Python
浅谈Python 中的复数问题
May 19 Python
python图像处理 PIL Image操作实例
Apr 09 Python
python使用wxpython开发简单记事本的方法
May 20 #Python
Python使用shelve模块实现简单数据存储的方法
May 20 #Python
Python使用matplotlib实现在坐标系中画一个矩形的方法
May 20 #Python
python获取指定目录下所有文件名列表的方法
May 20 #Python
Python使用reportlab将目录下所有的文本文件打印成pdf的方法
May 20 #Python
Python使用matplotlib绘制动画的方法
May 20 #Python
Python中subprocess模块用法实例详解
May 20 #Python
You might like
PHP 木马攻击防御技巧
2009/06/13 PHP
php中的curl使用入门教程和常见用法实例
2014/04/10 PHP
ThinkPHP的Widget扩展实例
2014/06/19 PHP
php实现httpRequest的方法
2015/03/13 PHP
Yii视图CGridView实现操作按钮定义地址示例
2016/07/14 PHP
利用jquery操作select下拉列表框的代码
2010/06/04 Javascript
JS拖动技术 关于setCapture使用
2010/12/09 Javascript
jquery 插件学习(二)
2012/08/06 Javascript
探讨JavaScript语句的执行过程
2016/01/28 Javascript
KnockoutJs快速入门教程
2016/05/16 Javascript
微信小程序 前端源码逻辑和工作流详解
2016/10/08 Javascript
AngularJS实现图片上传和预览功能的方法分析
2017/11/08 Javascript
Servlet3.0与纯javascript通过Ajax交互的实例详解
2018/03/18 Javascript
jQuery实现文字超过1行、2行或规定的行数时自动加省略号的方法
2018/03/28 jQuery
详解react-redux插件入门
2018/04/19 Javascript
使用koa-log4管理nodeJs日志笔记的使用方法
2018/11/30 NodeJs
JavaScript栈和队列相关操作与实现方法详解
2018/12/07 Javascript
node.js爬虫框架node-crawler初体验
2020/10/29 Javascript
Python中的zip函数使用示例
2015/01/29 Python
浅谈Python的异常处理
2016/06/19 Python
matplotlib在python上绘制3D散点图实例详解
2017/12/09 Python
pandas.loc 选取指定列进行操作的实例
2018/05/18 Python
Django url,从一个页面调到另个页面的方法
2019/08/21 Python
如何使用Python发送HTML格式的邮件
2020/02/11 Python
Python中使用threading.Event协调线程的运行详解
2020/05/02 Python
python创建文本文件的简单方法
2020/08/30 Python
Python GUI库Tkiner使用方法代码示例
2020/11/27 Python
python3字符串输出常见面试题总结
2020/12/01 Python
详解如何将 Canvas 绘制过程转为视频
2021/01/25 HTML / CSS
Wiggle澳大利亚:自行车、跑步、游泳商店
2020/11/07 全球购物
农救科工作职责
2013/11/27 职场文书
企业法人代表证明书
2014/09/27 职场文书
贫困证明书格式及范文
2014/10/15 职场文书
县委党的群众路线教育实践活动工作情况报告
2014/10/25 职场文书
golang判断key是否在map中的代码
2021/04/24 Golang
TypeScript中条件类型精读与实践记录
2021/10/05 Javascript