首页 > 学院 > 开发设计 > 正文

日常总结一:下面的代码会崩溃么?

2019-11-06 06:16:34
字体:
来源:转载
供稿:网友

如果文件夹不存在,建立文件会崩溃。

string strDir = "d://" + System.DateTime.Now.DayOfYear.ToString() ;

            System.IO.Directory.CreateDirectory(strDir);            string strFileName = "d://" + System.DateTime.Now.DayOfYear.ToString() + "//test.txt";            FileStream fs = new FileStream(strFileName, FileMode.OpenOrCreate, Fileaccess.ReadWrite); //可以指定盘符,也可以指定任意文件名,还可以为Word等文件            StreamWriter sw = new StreamWriter(fs); // 创建写入流            sw.WriteLine("test");             sw.Close(); //关闭文件
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表