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
967 views
in Technique[技术] by (71.8m points)

pyinstaller - how to get the name of the random-generated temp folder?

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

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

1 Answer

0 votes
by (71.8m points)

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


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

...