Script batch - DEL

Questo comando batch elimina i file e non le directory.

Sintassi

del [filename]

Esempio

L'esempio seguente mostra le diverse varianti di del comando.

@echo off 
Rem Deletes the file lists.txt in C:\ 
del C:\lists.txt 
Rem Deletes all files recursively in all nested directories
del /s *.txt 
Rem Deletes all files recursively in all nested directories , but asks for the 
confirmation from the user first 
Del /p /s *.txt

Produzione

Tutte le azioni vengono eseguite secondo le osservazioni nel file batch.