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

Categories

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

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

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...