os.remove() 就是删除文件的 os.removedirs() 就是删除文件夹的 os.path.exists() 用来判断文件或文件夹是否存在 import os path = "D:\\hello.py" if(os.path.exists(path)): # 判断文件是否存在 os.remove(path) # 删除文件 path = "D:\\hello" if(os.path.exists(path)...
使用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]...
只检查文件import os os.path.isfile("test-data") 通过这个方法,如果文件"test-data"不存在将返回...