# 手动命令删除指定类型文件

### 删除指定目录下所有子文件夹中的dat文件

```
del /S *.dat
```

### 删除指定目录下所有子文件夹中的bak文件

```
del /S *.bak
```
