Python更改使用startfile打开的exe的工作目录

发布于 2024-11-17 09:49:23 字数 284 浏览 4 评论 0原文

在 python 中,我使用 os.startfile 命令启动一个 Windows 可执行文件,该可执行文件在其自己的文件夹中执行特定的操作,python 代码是从另一个文件夹运行的,因此当我启动该文件时,它会在 python 脚本的工作目录中启动,但它必须从自己的目录开始。我尝试使用 os.chdir(path) 更改工作目录,但失败了,文件仍然没有在它自己的文件夹中运行。我想也许有一个像快捷方式的“开始”行这样的命令。我已经到处寻找,但没有成功。我想到的唯一解决方案是创建一个快捷方式并添加“开始于”行,然后启动快捷方式,但这是非常不切实际的。

In python i'm using the os.startfile command to start a windows executable that does especific stuff in its own folder, the python code is running from another folder, so when I start the file, it starts in the python script's working directory, but it has to start in its own directory. I've tried to use os.chdir(path) to change the working directory, but it fails, the file still not runs in it's own folder. I thought maybe there is a command like shortcut's "Start in" line. I've searched everywere, but not success. The only solution comes to my mind is to create a shortcut and add the "start in" line, then launch the shortcut, but that is very impractical.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ゞ花落谁相伴 2024-11-24 09:49:23

首先,不要使用 os.startfile。使用 subprocess,然后可以使用 cwd< Popen 的 /code> 参数。

import subprocess
process = subprocess.Popen('command', cwd = 'directory')

如果您确实想使用 ShellExecute< /code>,那么最好的方法是跳过os.startfile并直接使用ctypes调用它(或者看看它是否在pywin32中某处)。

Don't use os.startfile, for starters. Use subprocess, you can then use cwd argument of Popen.

import subprocess
process = subprocess.Popen('command', cwd = 'directory')

If you really want to use ShellExecute, then the best way will be to skip os.startfile and call it directly with ctypes (or look whether it's in pywin32 somewhere).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文