Método FolderItems3.Filter
Define um filtro curinga a ser aplicado aos itens retornados.
Sintaxe
iRetVal = FolderItems3.Filter(
grfFlags,
bstrFilter
)
Parâmetros
-
grfFlags [in]
-
Tipo: inteiro
Esse parâmetro pode ser um dos sinalizadores listados em SHCONTF.
-
bstrFilter [in]
-
Tipo: BSTR
Uma cadeia de caracteres de filtro que especifica o que deve ser listado na coleção FolderItems .
Exemplos
O exemplo a seguir mostra o uso adequado de Filter para JScript, VBScript e 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
Requisitos
Requisito | Valor |
---|---|
Cliente mínimo com suporte |
Windows 2000 Professional [somente aplicativos da área de trabalho] |
Servidor mínimo com suporte |
Windows 2000 Server [somente aplicativos da área de trabalho] |
Cabeçalho |
|
IDL |
|
DLL |
|
Confira também