private void btnUpload_Click(object sender, EventArgs e) { string strFolderPath = Application.StartupPath + "/myFile/"; OpenFileDialog dlg = new OpenFileDialog(); if (dlg.ShowDialog() == DialogResult.OK) { //*** Create Folder if (!Directory.Exists(strFolderPath)) { Directory.CreateDirectory(strFolderPath); } //*** Save File string filePath = dlg.FileName; string fileName = System.IO.Path.GetFileName(filePath); File.Copy(filePath, strFolderPath + fileName, true); MessageBox.Show("อัพโหลดไฟล์เรียบร้อยแล้ว"); } }
filePath = filePath.Raplace(System.IO.Path.GetExtension(filePath ), "");
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง