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

Is there a way to import the name (or the path) of the random-generated temp folder?

I know about --runtime-tmpdir which only defines the base path, but a random-named folder will still be created in that temp dir.

I see two (hacky) workarounds:

  1. scan the temp folder and look for a folder that starts with "_MEI"
  2. have a (uncompiled) script in the package that can be called from main.py and tell its location

But, whats the proper way of doing this? Thanks

question from:https://stackoverflow.com/questions/65917645/pyinstaller-how-to-get-the-name-of-the-random-generated-temp-folder

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

1 Answer

Found a way ! The temporary path is added automatically to sys.path by pyinstaller. So it can easily be extracted from there.


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

548k questions

547k answers

4 comments

86.3k users

...