DirectoryInfo DirInfo = new DirectoryInfo(TextBox1.Text.Trim()); if (!DirInfo.Exists) { this.lblText1.Text = "ไม่มีไฟล์นี้อยู่ในเครื่อง"; this.lblText2.Text = ""; } //*** Delete Folder ***' if (DirInfo.Exists) { this.lblText2.Text = "มีไฟล์นี้"; this.lblText1.Text = ""; }
Dim cFile As String = TextBox2.Text If Dir(cFile) = "" Then Label1.Text = "Not Found" Else Label1.Text = "Found-----------******" End If
string cFile = TextBox2.Text; if (string.IsNullOrEmpty(FileSystem.Dir(cFile))) { Label1.Text = "Not Found"; } else { Label1.Text = "Found-----------******"; }
FileInfo DirInfo = new FileInfo(textBox2.Text.Trim()); if (!DirInfo.Exists) { this.lblText1.Text = "ไม่มีไฟล์นี้อยู่ในเครื่อง"; this.lblText2.Text = ""; } else { this.lblText2.Text = "มีไฟล์นี้"; this.lblText1.Text = ""; }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง