如果文件不存在,则创建文件


76

如果文件不存在,我需要让我的代码读取以创建else追加。现在正在读取是否确实存在创建和附加。这是代码:

if (File.Exists(path))
{
    using (StreamWriter sw = File.CreateText(path))
    {

我会这样做吗?

if (! File.Exists(path))
{
    using (StreamWriter sw = File.CreateText(path))
    {

编辑:

string path = txtFilePath.Text;

if (!File.Exists(path))
{
    using (StreamWriter sw = File.CreateText(path))
    {
        foreach (var line in employeeList.Items)
        {
            sw.WriteLine(((Employee)line).FirstName);
            sw.WriteLine(((Employee)line).LastName);
            sw.WriteLine(((Employee)line).JobTitle);
        }
    }
}
else
{
    StreamWriter sw = File.AppendText(path);

    foreach (var line in employeeList.Items)
    {
        sw.WriteLine(((Employee)line).FirstName);
        sw.WriteLine(((Employee)line).LastName);
        sw.WriteLine(((Employee)line).JobTitle);
    }
    sw.Close();
}

}


1
File.AppendAllText -这是做的正是你的一行代码需要什么..
暗影精灵是耳朵你

@ShadowWizard因为已标记了作业,所以实际上可以指导OP显示条件逻辑。
Yuck

5
@Yuck-重塑方向盘的功课?!;)
暗影巫师为您耳边

Answers:


113

您可以简单地致电

using (StreamWriter w = File.AppendText("log.txt"))

如果该文件不存在,它将创建该文件并打开文件进行追加。

编辑:

这足够了:

string path = txtFilePath.Text;               
using(StreamWriter sw = File.AppendText(path))
{
  foreach (var line in employeeList.Items)                 
  {                    
    Employee e = (Employee)line; // unbox once
    sw.WriteLine(e.FirstName);                     
    sw.WriteLine(e.LastName);                     
    sw.WriteLine(e.JobTitle); 
  }                
}     

但是,如果您坚持要先检查,则可以执行类似的操作,但是我没有意义。

string path = txtFilePath.Text;               


using (StreamWriter sw = (File.Exists(path)) ? File.AppendText(path) : File.CreateText(path))                 
{                      
    foreach (var line in employeeList.Items)                     
    {                         
      sw.WriteLine(((Employee)line).FirstName);                         
      sw.WriteLine(((Employee)line).LastName);                         
      sw.WriteLine(((Employee)line).JobTitle);                     
    }                  
} 

另外,要指出的一件事是您正在执行很多不必要的拆箱操作。如果必须使用像这样的普通(非通用)集合ArrayList,则将对象取消装箱一次并使用引用。

但是,我希望将其List<>用于收藏:

public class EmployeeList : List<Employee>

18

要么:

using FileStream fileStream = File.Open(path, FileMode.Append);
using StreamWriter file = new StreamWriter(fileStream);
// ...

1
对于这种情况,您将获得IOException,因为当流编写器想要写入文件时,fileStream仍会锁定文件。而是将fileStream作为参数传递给StreamWriter构造函数。
腌制



0

例如

    string rootPath = Path.GetPathRoot(Environment.GetFolderPath(Environment.SpecialFolder.System));
        rootPath += "MTN";
        if (!(File.Exists(rootPath)))
        {
            File.CreateText(rootPath);
        }

-1在打开文件之前检查文件是否存在是错误的模式。这引入了比赛条件。查看其他答案和我对另一个问题的评论
ComFreek

我的模式就像包含在linq中。我的意思是正常的。有时,文件具有必要的授权,打开文件应该是第二种解决方案,而不是我们的答案。
梅汀·阿塔莱

@MetinAtalay很抱歉,我不完全理解您的评论。我担心的是,如果文件是在外部创建的if (!(File.Exists(...))),但在之后File.CreateText(...),则在之前被覆盖。
ComFreek

0
private List<Url> AddURLToFile(Urls urls, Url url)
{
    string filePath = @"D:\test\file.json";
    urls.UrlList.Add(url);

    //if (!System.IO.File.Exists(filePath))
    //    using (System.IO.File.Delete(filePath));

    System.IO.File.WriteAllText(filePath, JsonConvert.SerializeObject(urls.UrlList));

    //using (StreamWriter sw = (System.IO.File.Exists(filePath)) ? System.IO.File.AppendText(filePath) : System.IO.File.CreateText(filePath))
    //{
    //    sw.WriteLine(JsonConvert.SerializeObject(urls.UrlList));
    //}
    return urls.UrlList;
}

private List<Url> ReadURLToFile()
{
    //  string filePath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"App_Data\file.json");
    string filePath = @"D:\test\file.json";

    List<Url> result = new List<Url>(); ;
    if (!System.IO.File.Exists(filePath))
        using (System.IO.File.CreateText(filePath)) ;



    using (StreamReader file = new StreamReader(filePath))
    {
        result = JsonConvert.DeserializeObject<List<Url>>(file.ReadToEnd());
        file.Close();
    }
    if (result == null)
        result = new List<Url>();

    return result;

}

欢迎来到SO。请提供更多信息,为什么此代码可以回答问题。此外,提供了一个最小的可复制示例
Mathias

0

这对我也很好

string path = TextFile + ".txt";

if (!File.Exists(HttpContext.Current.Server.MapPath(path)))
{
    File.Create(HttpContext.Current.Server.MapPath(path)).Close();
}
using (StreamWriter w = File.AppendText(HttpContext.Current.Server.MapPath(path)))
{
    w.WriteLine("{0}", "Hello World");
    w.Flush();
    w.Close();
}

0

这将允许使用StreamWriter附加到文件

 using (StreamWriter stream = new StreamWriter("YourFilePath", true)) {...}

这是默认模式,不附加到文件并创建新文件。

using (StreamWriter stream = new StreamWriter("YourFilePath", false)){...}
                           or
using (StreamWriter stream = new StreamWriter("YourFilePath")){...}

无论如何,如果您要检查文件是否存在然后再执行其他操作,则可以使用

using (StreamWriter sw = (File.Exists(path)) ? File.AppendText(path) : File.CreateText(path))
            {...}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.