获取目录列表中前 xx 个文件的命令

获取目录列表中前 xx 个文件的命令

给定一个目录,有没有办法只返回前 100 个文件并显示其完整路径?

答案1

powershell ls "%cd%" -recurse ^| select -first 100 FullName

或者

powershell ls "%cd%" -r^|select -f 100 FullName

无标题:

powershell ls "%cd%" -r^|select -f 100 FullName^|ft -HideTableHeaders

或者

powershell ls "%cd%" -r^|select -f 100 FullName^|ft -Hide

无目录:

powershell ls "%cd%" -r^|?{$_.Attributes -notmatch 'Directory'}^|select -f 100 FullName

唯一目录:

powershell ls "%cd%" -r^|?{$_.Attributes -match 'Directory'}^|select -f 100 FullName

相关内容