Liste les fichiers plus grands qu'une certaine taille Liste les fichiers plus grands qu'une certaine taille Liste des fichiers superieurs à une certaine taille Batch 1 forfiles /P C:\ /M *.* /S /C "CMD /C if @fsize gtr 524288000 echo @PATH @FSIZE" Powershell 1 Get-ChildItem C:\ -recurse | where-object {$_.length -gt 524288000} | Sort-Object length | ft fullname, length -auto Nushell 1 ls | where size > 10mb | sort modified