回复 3# 大树 - #&@cls&echo off&powershell -c "type %~0|out-string|iex"&pause&exit
- $f="C:\Users\lenovo\Desktop\测试用例"
- "{0,-10}{1,-20}{2,-20}{3}" -f "文件","创建时间","修改时间","路径"|tee-object 清单.CSV -append
- Dir $f -filter *.xls?|%{"{0,-10}{1,-20}{2,-20}{3}" -f $_.name,$_.creationtime,$_.lastwritetime,$_.fullname|tee-object 清单.CSV -append }
复制代码 加个.fullname表示绝对路径。
加个tee-object,既能在屏幕显示结果,又能将结果写入文档。 |