Có cách nào tốt hơn để viết này? Xóa tập tin từ nhiều thư mục.
if exist "C:\Program Files\Max\Op" (cd C:\Program Files\Max\Op
del Lud.ini
if not exist "C:\Program Files\Max\Op\Lud.ini" echo "Lud.ini was removed")
if exist "C:\Program Files\Max\Op001" (cd C:\Program Files\Max\Op001
del Lud.ini
if not exist "C:\Program Files\Max\Op001\Lud.ini" echo "Lud.ini was removed")
if exist "C:\Program Files\Max\Op002" (cd C:\Program Files\Max\Op002
del Lud.ini
if not exist "C:\Program Files\Max\Op002\Lud.ini" echo "Lud.ini was removed")
if exist "C:\Program Files\Max\Op003" (cd C:\Program Files\Max\Op003
del Lud.ini
if not exist "C:\Program Files\Max\Op003\Lud.ini" echo "Lud.ini was removed")
if exist "C:\Program Files\Max\Op004" (cd C:\Program Files\Max\Op004
del Lud.ini
if not exist "C:\Program Files\Max\Op004\Lud.ini" echo "Lud.ini was removed
Bạn hiểu rằng, ngay cả khi bạn không xóa thư mục, tập lệnh bó của bạn sẽ cho biết bạn đã xóa thư mục. Tôi nghi ngờ đó là những gì bạn muốn xảy ra. Tôi chỉ nói về kịch bản của bạn bất kể lỗi cú pháp nào bạn có thể có hoặc không có.
—
Ramhound
Powershell ... Powershell là một cách tốt hơn để viết điều này ...
—
EBGreen