我正在尝试使用 powershell 获取文件夹中的所有子元素,我使用的代码是
Get-ChildItem -Recurse -path C:\clntfiles
此代码给出的输出类似
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a--- 4/29/2015 9:11 AM 6919044 HD 100616 Dec2014.pdf
-a--- 5/1/2015 11:42 AM 7091019 HD 101642 Jan2015.pdf
我不想要没有 .pdf 扩展名的模式 lastWriteTime 长度和文件名
输出应该是这样的
Dec2014
Jan2015
我不知道如何过滤。请指教
答案1
Get-ChildItem -Recurse C:\clntfiles | Select BaseName