摘要: //随机文件名称 public static string getRandomFileName(string fileName) { if (!string.IsNullOrEmpty(fileName)) { System.Threading.Thread.Sleep(100); string fileType = fileName.Substring(fileName.LastIndexOf(".")); System.Random rand = new System.Random(); DateTime now = DateTime.Now; string str = 阅读全文
posted @ 2012-11-01 17:36 MillerShi 阅读(340) 评论(0) 推荐(0) 编辑