In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article shows you how to judge the existence of a file in python, the content is concise and easy to understand, it can definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.
Method 1, os.path.exists import 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.isfile import 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 pathlib from pathlib import Path
Config = Path ('log.txt')
Print (config.is_file ())
The principle is the same as os.path.isfile.
The above is how to determine the existence of a file in python. Have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
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.