windows下把A文件夹下包含的内容 移动到B文件夹下
查询文件夹下包含NVL的文件
findstr /s /i /m "NVL" *.*
for %f in (D:\MyData\ex_lanly\Desktop\wms1\*) do (findstr /i /m "NVL" "%f" > nul && move "%f" D:\MyData\ex_lanly\Desktop\wms2)
查询文件夹下包含NVL的文件
findstr /s /i /m "NVL" *.*
for %f in (D:\MyData\ex_lanly\Desktop\wms1\*) do (findstr /i /m "NVL" "%f" > nul && move "%f" D:\MyData\ex_lanly\Desktop\wms2)