OpenFileDialog op1 = new OpenFileDialog(); op1.Multiselect = true; op1.ShowDialog(); op1.Filter = "allfiles|*"; textBox1.Text = op1.FileName; int count = 0; string[] FName; foreach (string s in op1.FileNames) { FName = s.Split('\\'); File.Copy(s, "C:\\New Folder" + FName[FName.Length - 1]); count++; } MessageBox.Show(Convert.ToString(count) + " File(s) copied");
string path = string.Empty(); if(Directory.Exists(path)) { openFileDialog1.InitialDirectory = path; } else { openFileDialog1.InitialDirectory = @"C:\"; }
OpenFileDialog f = new OpenFileDialog(); f.Title = "select file to copy"; if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK) { string CopyTo = f.FileName; FolderBrowserDialog b1 = new FolderBrowserDialog(); if (b1.ShowDialog() == System.Windows.Forms.DialogResult.OK) { string PasteTo = b1.SelectedPath + "//" + Path.GetFileName(f.FileName); //MessageBox.Show(b1.SelectedPath); string path = PasteTo; this.textBox1.Text = PasteTo; if (File.Exists(path)) { MessageBox.Show("file already exisit"); } else { File.Copy(CopyTo, PasteTo); MessageBox.Show("File Copied to New Folder"); return; } } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง