有什么方法可以在不运行 cmd.exe 的情况下解释命令?

发布于 2024-11-03 13:41:32 字数 358 浏览 1 评论 0原文

我正在寻找一种运行可执行文件或脚本的方法,而无需让 cmd.exe 为我执行此操作。目前我正在使用 cmd.exe /C 启动一个进程,我需要为我做以下事情:

  • 在当前目录中查找可执行文件并将 PATH
  • 解释为 PATHEXT允许无扩展名脚本命令
  • 解释文件关联,例如,当我告诉它运行 blah.py 时,运行 python 解释器。

我不需要能够运行任何“内置”命令,例如“dir”。

是否可以避免使用 cmd.exe 而无需重新实现上述所有功能?一定有某种 shell API 来完成上述事情,对吧?

I am looking for a way to run an executable or a script without getting cmd.exe to do it for me. Currently I'm launching a process using cmd.exe /C <command>, which I need to do the following things for me:

  • Look for the executable file in the current directory and PATH
  • Interpret PATHEXT to permit extension-less script commands
  • Interpret file associations to, e.g., run the python interpreter when I tell it to run blah.py.

I don't need to be able to run any of the "built-in" commands, like "dir".

Is it possible to avoid using cmd.exe without essentially re-implementing all of the above functionality? There must be some sort of shell API to do the above things, right?

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

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

发布评论

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

评论(2

栖迟 2024-11-10 13:41:32

ShellExecute 应该完全按照您的意愿执行 - 您可以使用它来启动可执行文件或文件(然后使用标准应用程序打开),

http://msdn.microsoft.com/en-us/library/bb762153%28v=vs.85%29.aspx

ShellExecute should do exactly what you want - you can use it to launch an executable or a file (which is then opened with the standard application),

http://msdn.microsoft.com/en-us/library/bb762153%28v=vs.85%29.aspx

放飞的风筝 2024-11-10 13:41:32

看一下 System.Diagnostics.Process.Start( appName, args) 。
http://msdn.microsoft.com/en-us /library/system.diagnostics.process.start.aspx 关于 shell,你看过吗:http://msdn.microsoft.com/en-us/库/bb773177(v=vs.85).aspx

Take a look at System.Diagnostics.Process.Start( appName, args) .
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx and about the shell, have you looked it: http://msdn.microsoft.com/en-us/library/bb773177(v=vs.85).aspx ?

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