public static String GetDirectoryName(DateTime time, String rootpath)
{
String year = String.Format("{0:yyyy}", time);
String month = String.Format("{0:MM}", time) + String.Format("{0:MMM}", time);
String day = String.Format("{0:dd}", time);
String filepath = Path.Combine(rootpath, "y" + year);
filepath = Path.Combine(filepath, "m" + month);
filepath = Path.Combine(filepath, "d" + day);
return filepath;
}
这将在给定根路径(例如C:\users\name\Documents\Scan Archive)和DateTime
. 您将使用文件名引用的日期。只需将文件名解析为DateTime
.
正如其他人在评论中所说,除非在某些数值之后,否则不要使用月份的名称。我会完全忽略它,因为我觉得它有点冗长。
很容易将文件名附加到此路径的末尾,并在创建文件时创建所有必需的目录。问题解决了!
编辑:在创建一些新文件时创建目录:
string dirpath = GetDirectoryName(date, "C:\Users\Name");
Directory.CreateDirectory(dirpath);
string filePpath = Path.combine(dirpath,"myfilename.txt");
FileInfo info = new FileInfo(filePath);
info.Create().Close();