vb6中的Shell(App.Path & "\" & "Hello.exe") 和 Shell("Hello.exe") 有什么区别

发布于 2024-11-06 23:46:59 字数 172 浏览 0 评论 0 原文

有什么区别。

Shell(App.Path & "\" & "Hello.exe") 

Shell("Hello.exe")

如果我把 Hello.exe 放在程序的文件夹中

What is difference between

Shell(App.Path & "\" & "Hello.exe") 

and

Shell("Hello.exe")

If I put Hello.exe in the program's folder.

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

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

发布评论

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

评论(1

初相遇 2024-11-13 23:46:59

第一行将从应用程序文件夹启动 Hello.exe。如果不存在,调用将会失败。

第二行将尝试在多个位置查找 Hello.exe

  1. 包含应用程序 EXE 的目录。
  2. system32 目录。
  3. 系统目录。
  4. Windows 目录。
  5. 当前目录。
  6. PATH 环境变量。

仅当在其中任何一个中都找不到 Hello.exe 时,调用才会失败。

Raymond Chen 相关帖子:您的调试代码可能是一个安全漏洞:加载可选的调试DLL,没有完整路径

First line will launch Hello.exe from the app folder. If it's not there, the call will fail.

Second line will try to find Hello.exe in several locations:

  1. The directory containing the application EXE.
  2. The system32 directory.
  3. The system directory.
  4. The Windows directory.
  5. The current directory.
  6. The PATH environment variable.

The call will fail only if Hello.exe is not to be found in any of them.

Related Raymond Chen post: Your debugging code can be a security vulnerability: Loading optional debugging DLLs without a full path.

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