如何增加文件路径字符限制
如何正确使用 \\?\
来确保文件路径大小在 250 个字符时不会引发 take long 异常?我发布的代码无法正常工作。
谢谢
foreach (string filePath in Directory.GetFiles(folder))
{
String path = @"\\?\" + filePath;
...
How do you use the \\?\
correctly to ensure that the file path size doesnt throw a took long exception at 250 characters? The code i have posted fails to work correctly.
Thank you
foreach (string filePath in Directory.GetFiles(folder))
{
String path = @"\\?\" + filePath;
...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.Net 1.0-4.0 不支持长路径:
有关 .NET 目前缺乏对长路径的内置支持的更多信息
.Net 1.0-4.0 does not support long paths:
more information on why .NET currently lacks built-in support for long paths