ItemIdListIsFileSystemFolder Method |
Returns true for normal FileSystemFolders, false for elements like zip files, that have an associated stream.
If pAcceptAncestor is true, a virtual folder containing file system folders will return true as well, false otherwise.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax public static bool IsFileSystemFolder(
ItemIdList pItemIdList,
bool pAcceptAncestor = true
)
Public Shared Function IsFileSystemFolder (
pItemIdList As ItemIdList,
Optional pAcceptAncestor As Boolean = true
) As Boolean
public:
static bool IsFileSystemFolder(
ItemIdList^ pItemIdList,
bool pAcceptAncestor = true
)
static member IsFileSystemFolder :
pItemIdList : ItemIdList *
?pAcceptAncestor : bool
(* Defaults:
let _pAcceptAncestor = defaultArg pAcceptAncestor true
*)
-> bool
Parameters
- pItemIdList
- Type: Jam.ShellItemIdList
The ItemIdList to check. - pAcceptAncestor (Optional)
- Type: SystemBoolean
false, if the passed ItemIdList needs to be a FileSystemFolder itself, false if children are accepted as well.
Return Value
Type:
BooleanTrue, for normal FileSystemFolders, false otherwise.
See Also