在我的应用程序文件夹结构中有很长的时间。我需要保存在此文件夹中的文件(我没有更改架构文件夹的选项!)
[已编辑]
using (var fileStream = File.Create(@"\\?\" + filePath, (int) file.Value.Length))
{
var bytesInStream = new byte[file.Value.Length];
file.Value.Read(bytesInStream, 0, bytesInStream.Length);
fileStream.Write(bytesInStream, 0, bytesInStream.Length);
}
问题是完整路径“filePath”有超过 260 个字符!
错误:
System.IO.PathTooLongException 指定的路径、文件名或两者都太长。完全限定文件名必须少于 260 个字符,目录名必须少于 248 个字符。
但他必须保存在这个文件夹中!
如何在不更改文件夹结构或文件名的情况下将此文件保存在此文件夹中?