我有以下代码:
static long getFolderSize(string path)
{
string[] a = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories);
long b = 0;
foreach (string name in a)
{
FileInfo fi = new FileInfo(name);
b += fi.Length;
}
return b;
}
在运行此代码的环境中,存在超过 260 个字符限制的路径。因此,该行
FileInfo fi = new FileInfor(name);
抛出一个 System.IO.PathTooLongException。
我已经阅读了很多关于这方面的内容,根据 https://blogs.msdn.microsoft.com/jeremykuhne/2016/07/30/net-4-6-2-and-long-paths-on-windows-10/这个问题应该在 .NET 4.6.2 中解决。因此,我在 .NET 4.7 中编译了代码,但仍然相同。
正如在这个线程中提到的,我尝试使用Delimon的库,但它在行中抛出了一个System.OverflowException
。string[] a = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories);
有没有人知道如何解决这个问题?(我无法更改文件结构,也不可能使用映射驱动器(。
谢谢
编辑:
我添加了
<runtime>
<AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false;Switch.System.IO.BlockLongPaths=false"/>
</runtime>
到 app.config(请注意,它是一个控制台应用程序(。现在有一个System.IO.FileNotFoundException在行中抛出
b += fi.Length;
编辑2:
这是 app.config 文件的样子:
<?xml version="1.0"?>
<configuration>
<runtime>
<AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false;Switch.System.IO.BlockLongPaths=false"/>
<runtime targetFramework="4.7"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7"/>
</runtime>
<appSettings>
<add key="SQLServer" value="Server2"/>
<add key="database" value="FolderSizeMonitor"/>
<add key="server" value="Server3"/>
</appSettings>
<startup>
<dir ID="1" path="\server20d$DataBEGEmergencyEmergency ManagementVery Very Very Long pathVery Very Very Long path" DepthToLook="4">
</dir>
</startup>
</configuration>
以下代码完成了这个技巧:
static long getFolderSize(string path)
{
DirectoryInfo dirInfo = new DirectoryInfo(path);
long b = 0;
foreach(FileInfo fi in dirInfo.EnumerateFiles("*",SearchOption.AllDirectories))
{
b += fi.Length;
}
return b;
}