IIS 和 argv[0] 路径语法

发布于 2024-12-15 13:48:38 字数 296 浏览 3 评论 0原文

我正在开发一个用 C++(微软的网络服务器)编写的 IIS 5 的 dll,

中看到一些奇怪的东西

但是在调试时我在我的 main() 函数argc = 1argv[0] = "\\?\C:\Inetpub\wwwroot\Project\Project.dll"

这个语法是什么?

搜索起来并不容易谷歌 !

我的代码隐藏在可执行文件中,但没有预料到这样的路径,并且不再工作。

I am working on a dll for IIS 5 written in C++ (the webserver of microsoft)

but I see something strange when debugging, in my main() function

argc = 1
and argv[0] = "\\?\C:\Inetpub\wwwroot\Project\Project.dll"

what is this syntax?

It's not exactly easy to search on google !

My code behind, which is also embeded in an executable, was not expecting such a path and is not working anymore.

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

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

发布评论

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

评论(1

舟遥客 2024-12-22 13:48:38

这是一个扩展长度path 允许长度大于 MAX_PATH 的路径。

It's an extended-length path to allow paths of greater length than MAX_PATH.

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