最近学习WMIC,有很多疑惑,下面问题请大家帮下忙:
一:
-
- C:\Documents and Settings\Administrator>wmic datafile where "drive='e:' and path
- ='\\批处理-VBS\\test\\' and filesize='14'" get name,filesize
- FileSize Name
- 14 e:\批处理-vbs\test\test.bat
复制代码
二:
-
- C:\Documents and Settings\Administrator>wmic datafile where "drive='e:' and path
- ='\\批处理-VBS\\test\\' and filesize>'14'" get name,filesize
- 无可用范例。
复制代码
三:
-
- C:\Documents and Settings\Administrator>wmic datafile where "drive='e:' and path
- ='\\批处理-VBS\\test\\' and extension='txt' and filesize>'14'" get name,filesize
- FileSize Name
- 23 e:\批处理-vbs\test\b.txt
- 745747 e:\批处理-vbs\test\xiake.txt
复制代码
1.请问下二中变为大于号就得不到结果了,而三种给它指定了扩展名就又能得到结果,这是什么原因?能不能帮解释下,我甚是疑惑。
2.可不可以修改下,只要filesize>14这个条件,显示满足条件所有格式的文件(不要P,想学习下WMIC) |