本文介绍了如何在C#中每1分钟创建一个新的文本文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述





我尝试过:



使用流编写器或文件文本请指导我



What I have tried:

Using stream writer or file text pls guide me

推荐答案

static void Main(string[] args)
    {
    System.Threading.Timer timer = new System.Threading.Timer(new TimerCallback(DoSomething));
    timer.Change(0L, 60000);
    Console.ReadLine();
    }
private static int fileNo = 1;
private static string strPath = @"D:\Temp\file";
private static void DoSomething(object state)
    {
    File.WriteAllText(strPath + (fileNo++).ToString() + ".txt", "The text to write");
    }


这篇关于如何在C#中每1分钟创建一个新的文本文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 00:35