In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)05/31 Report--
In this article Xiaobian introduces in detail "how python traverses the files under the folder", the content is detailed, the steps are clear, and the details are handled properly. I hope this article "python how to traverse the files under the folder" can help you solve your doubts.
Specific operation methods:
1. First of all, you need to import the os module in the python script for file operation.
Import os
2, through the for loop statement to determine whether the directory is a folder, if it is a file, print, otherwise it will be re-judged, so as to achieve traversal operation.
The code example is as follows:
Import os # Import os module
Def bianLi (rootDir): # parameters passed in
For root,dirs,files in os.walk (rootDir): # use API to quickly classify paths in a directory
For file in files: # print out the file with a for loop
Print (os.path.join (root,file))
For dir in dirs: # use the for loop to traverse the folder again
BianLi (dir)
RootDir = "/ home/du/1" # specify a folder to start traversing
BianLi (rootDir)
After reading this, the article "how python traverses the files under the folder" has been introduced. If you want to master the knowledge of this article, you still need to practice and use it yourself to understand it. If you want to know more about related articles, 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.