StorageFolder.IsEqual(IStorageItem) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether the current folder is equal to the specified folder.
public:
virtual bool IsEqual(IStorageItem ^ item) = IsEqual;
bool IsEqual(IStorageItem const& item);
public bool IsEqual(IStorageItem item);
function isEqual(item)
Public Function IsEqual (item As IStorageItem) As Boolean
Parameters
- item
- IStorageItem
The IStorageItem object that represents the folder to compare against.
Returns
bool
Returns true if the current folder is equal to the specified folder; otherwise false.
Implements
Remarks
Use the IsEqual method to determine whether two items represent the same folder.
This method compares the Path property of both items to determine if they are the same. If there is no Path (if the item is a library for example), or if the paths do not match the items are compared using IShellItem.Compare.