In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
How to judge the existence of a file in python? in view of this problem, this article introduces the corresponding analysis and solution in detail, hoping to help more partners who want to solve this problem to find a more simple and easy way.
Method 1, os.path.existsimport os
Print (os.path.exists ('log.txt'))
This is my favorite method. It can judge not only whether a file exists, but also whether a folder exists. Method 2, os.path.isfileimport os
Print (os.path.isfile ('log.txt'))
The isfile method can determine whether the given path is a file, and if so, it proves that the file exists, otherwise, the file does not exist. Method 3, try to open the file try in read mode:
With open ('log.txt', 'r') as fh:
Pass
Except FileNotFoundError:
Print ('does not exist')
If the file does not exist, a FileNotFoundError exception will be thrown, and the existence of the file can be judged by catching the exception by except. The with keyword is used to open the file, so there is no need to actively close the file method 4, use pathlibfrom pathlib import Path
Config = Path ('log.txt')
Print (config.is_file ())
The answer to the question about how to judge whether a document exists in python is shared here. I hope the above content can be of some help to you. If you still have a lot of doubts to be solved, you can follow the industry information channel to learn more about it.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.