fileUpload1 파일 업로드 string UpLoadPath = "~/File/"; // 업로드 폴더의 웹경로 string fileName = string.Empty; if (txtFile.PostedFile != null) { fileName = Path.GetFileName(txtFile.FileName); string tmpFileName = fileName; string savePath = Server.MapPath(UpLoadPath + tmpFileName); int j = 0; while (File.Exists(savePath)) //파일중복체크 { j++; tmpFileName = Path.GetFileNameWithoutExtension(fileName) + "(" + j.ToString() + ")" + Path... 2007. 6. 28. 이전 1 다음