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

一、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)

不能读此文件,也视为不存在。

Posted in 未分类

发表评论