ある拡張子のファイルだけを操作したいって時に使用
Option Explicit Set objFolder = objApl.NameSpace( 検索フォルダ ) For i = 0 To objFolder.Count-1 Set objItem = objFolder.Item( i ) If LCase(objFileSys.GetExtensionName(objItem.Name)) = "xls" _ Or LCase(objFileSys.GetExtensionName(objItem.Name)) = "xlsx" Then WScript.Echo "Excelです!" Else WScript.Echo "Excel以外" End If Next