1.開啟vs 2019 console專案
開啟console專案,裡面內容只要能夠自動在每一分鐘內在D:\MyFile入徑下,建立一個txt檔案,且寫入內容,Program.cs的內容為以下
class Program { static void Main(string[] args) <br/>{ string path = @"D:\MyFile\MyTest"+ DateTime.Now.Ticks.ToString() + ".txt"; try { // Create the file using (FileStream fs = File.Create(path)) { byte[] info = new UTF8Encoding(true).GetBytes("This is some text in the file."); // Add some information to the file. fs.Write(info, 0, info.Length); } } catch (Exception ex) { Console.WriteLine(ex.ToString()); } } }
2.window 10 工作排程器使用
這個練習的重點會在工作排程器的使用
(1)打開工作排程器
記得要選取的是.Net的exe執行檔案
在上圖中按下右鍵後啟用,排程就可以成功執行了。
3.預期結果
最後在D:\Myfilex路徑內,就可以看到每一分中自動寫入的.txt檔案
4.參考資料
沒有留言:
張貼留言