本文介绍了我可以用这段代码知道文件存储在哪里?并且日志代码是可行的吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是否可以通过此代码知道文件存储在哪里?并且日志代码是可行的吗?谢谢你的帮助:)



May I know with this code where will the files be stored to? and is the logging code workable? Thanks for your help:)

public void log(String message)
{

    String oFileName = "Log_" + datetime.ToString("dd-MM-yyyy_hh-mm-ss") + ".txt";
    if (!File.Exists(oFileName))
    {
        System.IO.FileStream f = File.Create(oFileName);
        f.Close();
    }

    try
    {
        System.IO.StreamWriter writter = File.AppendText(oFileName);
        writter.WriteLine(datetime.ToString("dd-MM-yyyy_hh-mm-ss") + " > " + message);
        writter.Flush();
        writter.Close();
    }
    catch (SqlException ex)
    {
        Console.WriteLine("SQL Error: " + ex.Message);
    }

    catch (Exception e)
    {
        Console.WriteLine(e.Message.ToString());
    }
}

推荐答案



这篇关于我可以用这段代码知道文件存储在哪里?并且日志代码是可行的吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 09:14