admin管理员组文章数量:1344319
I want my WPF app to be able to easily handle long file paths. According to this article, all I have to do is set a registry key and a value in my app manifest. To me this sounds a lot easier than trying to be sure that every file access I do has the \\?\
prefix on it.
But the fact that I need to set this registry key has me wondering: Is there any possible negative effect of setting that registry key? Could other applications be negatively affected?
Because if not, I am left to wonder why Microsoft does not simply enable this for all new installs of Windows. What is the downside?
I want my WPF app to be able to easily handle long file paths. According to this article, all I have to do is set a registry key and a value in my app manifest. To me this sounds a lot easier than trying to be sure that every file access I do has the \\?\
prefix on it.
But the fact that I need to set this registry key has me wondering: Is there any possible negative effect of setting that registry key? Could other applications be negatively affected?
Because if not, I am left to wonder why Microsoft does not simply enable this for all new installs of Windows. What is the downside?
Share Improve this question asked 11 hours ago JoeJoe 6,8964 gold badges36 silver badges91 bronze badges 1 |1 Answer
Reset to default 0To start off the registry setting you mention is turned on by default in modern Windows. All you need is to turn on long path awareness in your manifest.
Is there any possible negative effect of setting that registry key
Well, it is not backwards compatible, now is it. And the Windows API is trying to be backwards compatible to a fault, even going back to Windows 2.0 for some functions.
This makes functions behave in a different way by accepting different parameters (\\.\
strings), and it introduces the possibility of receiving long paths and sending them to other functions without the prefix, thus breaking the call. You are generally much better off by using the C++ standard library as much as possible, and letting it figure the paths out.
本文标签: filesystemsDownsides to enabling longfilepath support in WindowsStack Overflow
版权声明:本文标题:filesystems - Downsides to enabling long-file-path support in Windows? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743750945a2532634.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
char[MAX_PATH]
. The buffer overflow caused by long paths is a severe security problem. You might be using such code, even in a WPF app, in a library that you'd never suspect of being dangerous. – Hans Passant Commented 9 hours ago