Posted in Python onNovember 16, 2020
os即operating system(操作系统),Python 的 os 模块封装了常见的文件和目录操作。
os.path模块主要用于文件的属性获取,exists是“存在”的意思,所以顾名思义,os.path.exists()就是判断括号里的文件是否存在的意思,括号内的可以是文件路径。
举个栗子:
import os #判断文件夹是否存在 dir = os.path.exists('C:\\Users\\Desktop') print('dir:', dir) #判断文件是否存在 file = os.path.exists('C:\\Users\\Desktop\\雍正王朝.txt') print('file:', file)
运行结果
显示该文件及文件夹都存在
到此这篇关于详解python os.path.exists判断文件或文件夹是否存在的文章就介绍到这了,更多相关python os.path.exists判断文件存在内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!
详解python os.path.exists判断文件或文件夹是否存在
- Author -
csdn_1HAO声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@