摘要: static void Main(string[] args) { string currentDirectory = Environment.CurrentDirectory; string[] files = Directory.GetFiles(currentDirectory, "*.sql"); string path = Path.Combine(currentDirectory, "all.sql"); using (FileStream stream = File.Create(path)) { stream.Dispose(); } f 阅读全文
posted @ 2011-06-02 15:45 scott.pei 阅读(215) 评论(0) 推荐(0) 编辑