如何仅列出文件夹中的图像文件?像 jpg, gif, png, bmp
这是我到目前为止得到的代码。它的作用是在每个子文件夹中创建一个目录列表并列出所有文件。现在我只想列出图像文件。你怎么能用windows cmd来做到这一点?
@echo off
for /r "C:\Documents and Settings\Administrator\Billy\Artworks\" %%d in (.) do dir /s/b "%%~fd" > "%%~dpnd\dirlist.txt"
如何仅列出文件夹中的图像文件?像 jpg, gif, png, bmp
这是我到目前为止得到的代码。它的作用是在每个子文件夹中创建一个目录列表并列出所有文件。现在我只想列出图像文件。你怎么能用windows cmd来做到这一点?
@echo off
for /r "C:\Documents and Settings\Administrator\Billy\Artworks\" %%d in (.) do dir /s/b "%%~fd" > "%%~dpnd\dirlist.txt"