Pythonファイルとフォルダが存在するかどうかを判断する方法

3653 ワード

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', '[email protected]')
'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)

このファイルは読めません.存在しないとみなされます.