找出所有分区根目录的*.dll文件,给出cmd或powershell命令

2023-10-27 15:54:58 浏览数 (1)

找出所有分区根目录的*.dll文件,给出cmd或powershell命令

【powershell】

仅查找分区根目录中的 *.dll 文件,powershell命令是

代码语言:javascript复制
Get-PSDrive -PSProvider FileSystem | ForEach-Object { Get-ChildItem -Path $_.Root -Filter "*.dll" -ErrorAction SilentlyContinue }

【cmd】

仅查找分区根目录中而非子目录的 *.dll 文件,给出cmd命令

代码语言:javascript复制
dir /a-d /b C:*.dll

for循环从A到Z,替换C:盘符

代码语言:javascript复制
for %i in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do dir /a-d /b %i:*.dll 2>nul

如果在.bat中,%需要2个,即

代码语言:javascript复制
for %%i in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do dir /a-d /b %%i:*.dll 2>nul

0 人点赞