如果它不存在,我正在尝试创建一个目录。它正确地进入代码以创建目录,因为它不存在。但随后它给了我以下错误:
DirectoryNotFoundException 未处理
找不到路径“\192.168.22.2\2009”的一部分
var fileYear = createdDate.Value.Year.ToString();
var fileMonth = createdDate.Value.Month.ToString();
var rootDir = @"\\192.168.22.2";
if (!File.Exists(Path.Combine(rootDir,fileYear)))
{
// Create the Year folder
Directory.CreateDirectory(Path.Combine(rootDir,fileYear));
}