我正在编写一些 VB 代码来创建一个批处理文件,启动该批处理文件,然后删除该文件。在文件删除部分之前一切正常。
My.Computer.FileSystem.WriteAllText("C:\test.bat", "@echoe off & start firefox http://www.mixedmartialarts.com http://news.google.com/ & exit", True)
Shell("C:\test.bat", AppWinStyle.Hide)
Kill("C:\test.bat")