del dir_name/*.*

来源: 2005-07-05 20:05:18 [旧帖] [给我悄悄话] 本文已被阅读:

some old version DOS has command called deltree.

del dir_name/*.* will delete all file under dir_name, but dir still there.

rmdir dir_name will remove the dir and its files.