문제

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.

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top