我想创建一个带日期的文件。
DateTime time_now = DateTime::UtcNow;
String^ time_str = time_now.UtcNow.ToString();
String^ strPath = "C:\\Users\\Documents\\VS\\MyProject\\" + fileName + time_str + ".prc";
FileStream^ fs = File::Create(strPath); // in this line I get notSupportedException
我调试代码,文件名是:myfile05.01.2012 12:37:1222.prc
我认为问题是“:”我该如何解决?