Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
730 views
in Technique[技术] by (71.8m points)

search - find path of program (python)

so I'm trying to find paths of executable now my code is checking every directory so it's feeling like not the best option and it may take some time with some searches

def findFile(filename):
    newFileName=filename+'.exe'
    for root,dirs, files in os.walk("C:\"):
        for f in files:
            if newFileName in os.path.join(root,f).lower() and "install" not in  os.path.join(root,f).lower():
                return os.path.join(root,f)
    return None

so I'm looking for exe file that not contain word install cause I just want to start programs for now any suggestions to make it more efficient

question from:https://stackoverflow.com/questions/65844654/find-path-of-program-python

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...