在.net 4.7中使用长路径时出错

时间:2017-07-03 15:03:59

标签: c# .net wpf .net-4.6.2 .net-4.7

我已将本地组策略编辑器中的Enable Win32 Long Paths设置为Enabled,然后重新启动计算机。

这是代码:

string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
for (int i = 0; i < 10; i++)
    path += "\\" + new string('z', 200);
Directory.CreateDirectory(path);

我收到了错误:

  

System.IO.DirectoryNotFoundException:'无法找到部分内容   路径'C:\ Users ... \ Desktop \ zzzzzzzzzz ...

(这实际上是一个奇怪的错误信息。)

app.config已经有:

<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />

更多信息(可能不重要)

我尝试在this post和其他地方(尽管在评论中指出,在使用.net 4.7时不需要)在configuration下的app.config中添加:

<runtime>
  <AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false;Switch.System.IO.BlockLongPaths=false" />
</runtime>

仍然是同样的错误。

如果我只使用一个zzzzzz...,则会在桌面上创建它而不会出错。

我正在使用VS2017,Windows 10.我尝试了Winforms和WPF。

3 个答案:

答案 0 :(得分:13)

周年纪念更新(RS1)有一个错误,允许长路径在没有清单的情况下工作。对于任何更新的窗口,您必须将Application Manifest File项添加到项目中。否则它将无法工作。

<application xmlns="urn:schemas-microsoft-com:asm.v3">
  <windowsSettings>
    <longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
  </windowsSettings>
</application>

答案 1 :(得分:0)

这可能无法解答您的问题,但会为您提供解决方法的提示。我在Ubuntu Linux下使用mono 4.5测试了你的代码片段并且像魅力一样,但在Windows中,故事可能有点不同。在这里,值得责备的似乎是.NET Framework本身,关于this articlethis other article,不支持长路径。

因此,this StackOverflow answer中@Anastasiosyal建议的解决方案是依赖Windows Api本身。有两种方法:直接旁路或Api呼叫。

Directory.CreateDirectory(@"\\?\" + veryLongPath);

Api电话(代码不是我的,从@Anastasiosyal回答得到它):

// This code snippet is provided under the Microsoft Permissive License.
using System;
using System.IO;
using System.Runtime.InteropServices;
using Microsoft.Win32.SafeHandles;

[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
internal static extern SafeFileHandle CreateFile(
    string lpFileName,
    EFileAccess dwDesiredAccess,
    EFileShare dwShareMode,
    IntPtr lpSecurityAttributes,
    ECreationDisposition dwCreationDisposition,
    EFileAttributes dwFlagsAndAttributes,
    IntPtr hTemplateFile);

public static void TestCreateAndWrite(string fileName) {

    string formattedName = @"\\?\" + fileName;
    // Create a file with generic write access
    SafeFileHandle fileHandle = CreateFile(formattedName,
        EFileAccess.GenericWrite, EFileShare.None, IntPtr.Zero,
        ECreationDisposition.CreateAlways, 0, IntPtr.Zero);

    // Check for errors
    int lastWin32Error = Marshal.GetLastWin32Error();
    if (fileHandle.IsInvalid) {
        throw new System.ComponentModel.Win32Exception(lastWin32Error);
    }

    // Pass the file handle to FileStream. FileStream will close the
    // handle
    using (FileStream fs = new FileStream(fileHandle,
                                    FileAccess.Write)) {
        fs.WriteByte(80);
        fs.WriteByte(81);
        fs.WriteByte(83);
        fs.WriteByte(84);
    }
}

此外,我建议您使用Path.Combine代替path + "\\" + subpath

答案 2 :(得分:0)

我的经验:

1)在桌面应用程序(.NET 4.7)中,您只需要使用路径名,然后使用带有前缀@“ \?\的路径名即可(不需要清单,在app.confing中设置UseLegacyPathHandling)即可。

2)在Web应用程序中,您必须设置以下内容:

  bool legacyPaths;
  if (AppContext.TryGetSwitch("Switch.System.IO.UseLegacyPathHandling", out legacyPaths) && legacyPaths)
  {
    var switchType = Type.GetType("System.AppContextSwitches"); 
    if (switchType != null)
    {
      AppContext.SetSwitch("Switch.System.IO.UseLegacyPathHandling", false);   
      var legacyField = switchType.GetField("_useLegacyPathHandling", System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic);
      legacyField?.SetValue(null, (Int32)0); 
      AppContext.TryGetSwitch("Switch.System.IO.UseLegacyPathHandling", out legacyPaths);
      Assert.IsFalse(legacyPaths, "Long pathnames are not supported!");
    }
  }

希望对您有所帮助!