FolderItems3.Filter method
Sets a wildcard filter to apply to the items returned.
Syntax
iRetVal = FolderItems3.Filter(
grfFlags,
bstrFilter
)
Parameters
-
grfFlags [in]
-
Type: Integer
This parameter can be one of the flags listed in SHCONTF.
-
bstrFilter [in]
-
Type: BSTR
A filter string that specifies what should be listed in the FolderItems collection.
Examples
The following example shows the proper usage of Filter for JScript, VBScript, and Visual Basic.
JScript:
<script language="JScript">
function fnFolderItems3FilterJ()
{
var objShell = new ActiveXObject("shell.application");
var objFolder;
var ssfWINDOWS = 36;
objFolder = objShell.NameSpace(ssfWINDOWS);
if (objFolder != null)
{
var objFolderItems3;
objFolderItems3 = objFolder.Items();
if (objFolderItems3 != null)
{
var SHCONTF_NONFOLDERS = 64;
alert(objFolderItems3.Count);
objFolderItems3.Filter(SHCONTF_NONFOLDERS, "*.txt");
alert(objFolderItems3.Count);
}
}
}
</script>
VBScript:
<script language="VBScript">
function fnFolderItems3FilterVB()
dim objShell
set objShell = CreateObject("shell.application")
if (not objShell is nothing) then
dim objFolder
dim ssfDRIVES
ssfWINDOWS = 36
set objFolder = objShell.NameSpace(ssfWINDOWS)
if (not objFolder is nothing) then
dim objFolderItems3
set objFolderItems3 = objFolder.Items()
if (not objFolderItems3 is nothing) then
dim SHCONTF_NONFOLDERS
SHCONTF_NONFOLDERS = 64
alert(objFolderItems3.Count)
objFolderItems3.Filter SHCONTF_NONFOLDERS, "*.txt"
alert(objFolderItems3.Count)
end if
set objFolderItems3 = nothing
end if
set objFolder = nothing
end if
set objShell = nothing
end function
</script>
Visual Basic:
Private Sub fnFolderItems3FilterVB()
Dim objShell As Shell
Dim objFolder As Folder
Dim ssfWINDOWS As Long
ssfWINDOWS = 36
Set objShell = New Shell
Set objFolder = objShell.NameSpace(ssfWINDOWS)
If (Not objFolder Is Nothing) Then
Dim objFolderItems3 As FolderItems3
Set objFolderItems3 = objFolder.Items
If (Not objFolderItems3 Is Nothing) Then
Dim SHCONTF_NONFOLDERS As Long
SHCONTF_NONFOLDERS = 64
Debug.Print objFolderItems3.Count
objFolderItems3.Filter SHCONTF_NONFOLDERS, "*.exe"
Debug.Print objFolderItems3.Count
End If
Set objFolderItems3 = Nothing
End If
Set objFolder = Nothing
Set objShell = Nothing
End Sub
Requirements
Requirement | Value |
---|---|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
Minimum supported server |
Windows 2000 Server [desktop apps only] |
Header |
|
IDL |
|
DLL |
|
See also