如何运行另一个目录中的exe!
我想从我的 perl 脚本运行一个 exe,该脚本不在我的 perl 脚本所在的同一目录中。并且该目录不在系统路径中。如何在 perl 本身中设置路径并运行该 exe。 我尝试设置 env 但没有成功。
谢谢, 卡斯
I want to run an exe from my perl script which is not in the same directory where my perlscript exist. As well as the directory is not in the system PATH. How to set the path in the perl itself and run that exe.
I tried to set env but it didnt work.
thnx,
kas
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您知道 exe 文件在哪里,只需使用它的路径,就像从命令行运行它一样。在 Perl 中:
或者如果您更喜欢使用正斜杠(它们与 Windows 内核都相同):
If you know where the exe file is, just use the path to it the same as if you were running it from the command line. In Perl:
or if you prefer to use forward slashes (they're all the same to the Windows kernel):
您不需要设置任何环境变量来运行 exe。您所需要做的就是使用绝对路径或相对于执行 perl 脚本时所在目录的路径来运行 exe。例如,假设这是 Windows(因为您正在谈论 exe),如果您的目录结构如下:
并且在命令提示符下运行:
那么在您的 perl 文件中,您应该使用
或
如果您的命令提示符是:
那么您可以使用
或
更新
文件test.pl:
文件testpath.pl:
You shouldn't need to set any environment variables just to run an exe. All you need to do is run the exe using its absolute path or a path relative to the directory you are in when you execute the perl script. For example, assuming this is Windows (since you're talking about an exe) if you have a directory structure like:
and at your command prompt you are running:
then in your perl file, you should use either
or
If your command prompt is:
then you can use
or
Update
file test.pl:
file testpath.pl:
尝试使用 exe 的完整路径。例如,
您是否像这样设置路径:
要获取路径:
要设置它:
Try using the full path to your exe. e.g.
Did you set your path like this:
To get your PATH:
To set it: