摘要:
private static void downfile(string filepath) { int count = 0; HttpWebRequest request; HttpWebResponse response; string name = filepath.Substring(filepath.IndexOf("interface/")+10); string filename = Application.StartupPath + "\\" + name; if (File.Exists(filename)) { File.Delete(filename); } request 阅读全文