Announcement

Collapse
No announcement yet.

เขียน batch file เพื่อ check file... ว่ามีอยู่หรื่อปล่าว ????

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • เขียน batch file เพื่อ check file... ว่ามีอยู่หรื่อปล่าว ????

    คือถ้าผมต้องการเขียน batch file ให้เช็คว่ามีไฟล์ "d:\xxx.mp3" อยู่หรือปล่าว
    ุ้ถ้าไม่มีให้ goto end ออกไป
    ถ้ามีให้ echo Oker

    ่ช่วยเขียนให้ดูหน่อยครับ

    ขอบคุณล่วงหน้า...

  • #2
    IF [NOT] EXIST filename command ELSE command
    IF EXIST hello.txt (
    DEL hello.txt
    ) ELSE (
    ECHO hello.txt is missing
    )
    ประมาณนี้มั้งครับ

    Comment

    Working...
    X