Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーションで Qt を使用したいと考えています。何かを自己解凍する単一のexeファイルである必要があります。Qt を使用したいので、Qt ライブラリを一時ディレクトリに抽出し、実行中に追加したいと考えていました。それらはexeパスに抽出されるべきではありません。
これを行う方法?
cwd("newdir")1つの可能性は、またはなどの作業ディレクトリを変更することSetCurrentDirectory("newdir")です。
cwd("newdir")
SetCurrentDirectory("newdir")
もう1つは、プロセスの$PATHを変更することputenv ("PATH", "path + newdir")です。
putenv ("PATH", "path + newdir")