File.WriteAllBytes(@"D:\Folder\file.png", bytes);
工作正常
File.WriteAllBytes("D:\\Folder\\file.png", bytes);
返回不支持给定路径的格式
问题是我正在使用File.WriteAllBytes
项目中的ASP MVC
函数,并且正在从web.config
文件中加载路径。
<add key="Path" value="D:\Folder"/>
所以在我的控制器代码中
File.WriteAllBytes(ConfigurationManager.AppSettings["Path"], bytes);
和
ConfigurationManager.AppSettings["Path"]
返回
D:\\文件夹
所以我遇到了错误: The given path's format is not supported