gpt4 book ai didi

c# - 将日期添加到文件名时的 StreamWriter 问题

转载 作者:行者123 更新时间:2023-12-03 21:56:34 25 4
gpt4 key购买 nike

我在使用 System.IO.StreamWriter 时遇到了一个小问题。

StreamWriter Write = 
new StreamWriter(@"../Debug/Payments/_" + dp.Value.ToString() + ".txt");

当我运行应用程序时,它返回:

An unhandled exception of type 'System.NotSupportedException' occurred in mscorlib.dll Additional information: The given path's format is not supported.

最佳答案

试试这个:

string filename= DateTime.Now.ToString("yyyy_MM_dd");
string strpath = Server.MapPath("~/Debug/Payments/_"+ filename + ".txt");
StreamWriter Write = new StreamWriter(strpath);

您的问题出在格式上。

关于c# - 将日期添加到文件名时的 StreamWriter 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47257805/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com