Click or drag to resize

FolderCompareAbsoluteIdLists Method (IntPtr, IntPtr, SHCIDS, Boolean)

Determines the relative order of two file objects or folders, given their absolute item identifier lists.

Namespace:  callback.ShellBoost.Core.WindowsShell
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public static int CompareAbsoluteIdLists(
	IntPtr idList1,
	IntPtr idList2,
	SHCIDS comparison = SHCIDS.SHCIDS_NONE,
	bool throwOnError = true
)

Parameters

idList1
Type: SystemIntPtr
The first absolute PIDL.
idList2
Type: SystemIntPtr
The second absolute PIDL.
comparison (Optional)
Type: callback.ShellBoost.Core.WindowsShellSHCIDS
Specifies how the comparison should be performed.
throwOnError (Optional)
Type: SystemBoolean
true to throw error; otherwise false.

Return Value

Type: Int32
A negative return value indicates that the first item should precede the second (idList1 < idList2). A positive return value indicates that the first item should follow the second (idList1 > idList2). A return value of zero indicates that the two items are the same (idList1 = idList2).
See Also