The Python implementation reads the filename of all files in the directory and saves the code to the TXT file

  • 2020-04-02 14:23:32
  • OfStack

Code: (using os.listdir)


import os def ListFilesToTxt(dir,file,wildcard,recursion):
    exts = wildcard.split(" ")
    files = os.listdir(dir)
    for name in files:
        fullname=os.path.join(dir,name)
        if(os.path.isdir(fullname) & recursion):
            ListFilesToTxt(fullname,file,wildcard,recursion)
        else:
            for ext in exts:
                if(name.endswith(ext)):
                    file.write(name + "n")
                    break def Test():
  dir="J:\1"
  outfile="binaries.txt"
  wildcard = ".txt .exe .dll .lib"
 
  file = open(outfile,"w")
  if not file:
    print ("cannot open the file %s for writing" % outfile)   ListFilesToTxt(dir,file,wildcard, 1)
 
  file.close() Test()

Code :(use os.walk) Walk recursively processes directories and subdirectories, returning three items at a time: the current recursive directory, all subdirectories in the current recursive directory, and all files in the current recursive directory.


import os def ListFilesToTxt(dir,file,wildcard,recursion):
    exts = wildcard.split(" ")
    for root, subdirs, files in os.walk(dir):
        for name in files:
            for ext in exts:
                if(name.endswith(ext)):
                    file.write(name + "n")
                    break
        if(not recursion):
            break def Test():
  dir="J:\1"
  outfile="binaries.txt"
  wildcard = ".txt .exe .dll .lib"
 
  file = open(outfile,"w")
  if not file:
    print ("cannot open the file %s for writing" % outfile)   ListFilesToTxt(dir,file,wildcard, 0)
 
  file.close() Test()


Related articles: