สร้าง Batch file ขั้นพื้นฐาน

สร้าง Batch file ขั้นพื้นฐาน
Photo by Shahadat Rahman / Unsplash
  1. เปิดโปรแกรม Notepad ขึ้นมา พิมพ์ Command ดังนี้.
cd C:\Users\User\Desktop
mkdir TestFolder
echo some text > TestFolder\testFile.txt
dir TestFolder

บรรทัดที่ 1 สั่งให้เข้าไปยัง Directory Desktop

บรรทัดที่ 2 สั่งให้สร้าง Directory ชื่อ TestFolder

บรรทัดที่ 3 สั่งให้สร้าง File .txt ใน Directory TestFolder โดยใส่ข้อความ some text

บรรทัดที่ 4 สั่งให้แสดงรายการ File และ Directory อื่น ๆ ที่อยู่ใน Directory TestFolder

  1. เลือก save ด้วยนามสกุล Batch file(.bat).
  1. เมื่อ Run Command Batch file ระบบจะสร้าง Folder ชื่อ TestFolder ตามชุดคำสั่งที่ได้สร้างไว้
  1. เมื่อเข้าไปดูภายใน TestFolder file จะพบ testFile.txt และเมื่อเปิด .txt จะพบข้อความ "some text"