微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c#创建目录和文件夹,数据写入并生成txt文件

c#创建目录:

// 获取程序的基目录。
System.AppDomain.CurrentDomain.BaseDirectory

// 获取模块的完整路径。
System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName

// 获取和设置当前目录(该进程从中启动的目录)的完全限定目录。
System.Environment.CurrentDirectory

// 获取应用程序的当前工作目录。
System.IO.Directory.GetCurrentDirectory()

// 获取和设置包括该应用程序的目录的名称
System.AppDomain.CurrentDomain.Setupinformation.ApplicationBase

// 获取启动了应用程序的可执行文件的路径。
System.Windows.Forms.Application.StartupPath

// 获取启动了应用程序的可执行文件的路径及文件
System.Windows.Forms.Application.ExecutablePath

//组成新的路径

string path=System.Windows.Forms.Application.StartupPath+"\\DownFile\\";

//判断该路径下文件夹是否存在,不存在的情况下新建文件

if(!Directory.Exists(path))

{

Directory.CreateDirectory(path);

}

//生成txt文件,将json字符串数据保存到txt文件

string postPath=path+DateTime.Now.ToString("yyyyMMddHHmmss")+".txt";//路径+文件

byte[] bytes=null;

bytes=Encoding.UTF8.GetBytes(Obj.ToString())//Obj为json数据

FileStream fs=new FileStream(postPath,FileMode.Create);

fs.Write(bytes,bytes.Length);

fs.Close();

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐