zoukankan      html  css  js  c++  java
  • 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,0,bytes.Length);

    fs.Close();

  • 相关阅读:
    多点触摸时代来了,第一个是什么呢
    能看出点幻影刺客的风采
    XNA 贴图载入的新状况
    WAR3的模型,幻影刺客,我来了。
    幻影刺客跑起来啦
    TM2T入手
    哥们儿,你终于来了….哈哈,等的花儿都谢了。
    鸣谢 MAGOSX.com
    彩色版幻影刺客留念
    好吧,效果先到这里吧
  • 原文地址:https://www.cnblogs.com/huodige/p/11208703.html
Copyright © 2011-2022 走看看