void CreatePath(string _path) { if (!(System.IO.Directory.Exists(_path))) { System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo { WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden, FileName = "cmd.exe", Arguments = "/c md " + Convert.ToChar(34) + _path + Convert.ToChar(34) }; System.Diagnostics.Process process = new System.Diagnostics.Process { StartInfo = startInfo }; process.Start(); } } private void button4_Click(object sender, EventArgs e) { int bb = 1; string CODE; for (int b = 1; b < 10; b++) { CreatePath(txtTarget.Text + "\\" + b);// สร้างโฟลเดอร์ } for (int i = 0; i < dataGridView1.RowCount - 1; i++) { do { song++; if (song > 60000) { song = 0; bb++; } CODE = bb + string.Format("{0:00000}", song); _fileSong = txtTarget.Text + "\\" + bb + "\\" + CODE + ".AVI"; _fileSNF = txtTarget.Text + "\\" + bb + "\\" + CODE + ".SNF"; } while (System.IO.File.Exists(_fileSong)); System.IO.File.CreateText(_fileSNF).Dispose(); } }
string filepath = "C:\\Data\\FileName.txt"; if (!System.IO.File.Exists(filepath)) { System.IO.File.Create(filepath).Dispose(); }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง