我认为这段代码
For Each file in filecoll
Ext = UCase(Right(File.Path, 3))
If Ext = "JPG" OR Ext = "GIF" Then
on error resume next
只允许显示 JPG 文件,是否有添加 PNG 和 GIF 以便脚本也会显示这些文件?
我认为这段代码
For Each file in filecoll
Ext = UCase(Right(File.Path, 3))
If Ext = "JPG" OR Ext = "GIF" Then
on error resume next
只允许显示 JPG 文件,是否有添加 PNG 和 GIF 以便脚本也会显示这些文件?