pythonはフォルダを巡回してpyというファイルを探す方法です。


大学を卒業して、大学で何行のコードを書きましたか?

#coding=utf-8
import os
class Solution:
 def __init__(self):
  self.dirPath = []
 
 def numberOfCode(self,path):
  for dir in os.listdir(path):
   childDir = os.path.join(path,dir)
   if os.path.isdir(childDir):
    self.numberOfCode(childDir)
   else:
    if childDir[-2:] == "py":
     self.dirPath.append(childDir)
  return self.dirPath
 
 def setCode(self):
  with open("/home/code.py","ab+") as f:
   for file in self.dirPath:
    content = open(file,"r").read()
    f.write(content)
s = Solution()
s.numberOfCode("/home/py/")
s.setCode()
以上のpythonはフォルダを巡回して、pyとしてのファイルを探す方法は小编で皆さんに共有する内容です。参考にしていただければと思います。どうぞよろしくお愿いします。