How to translate IFolderHandle into IFolder
So far I have known how to extract change set from IWorkItem according to link below:
Now I can retrieve IFileItem object and know the name of file in changeset. This object provides API getParent() which return an object IFolderHandle which I guess might related to the parent folder of that file and I know there is a class called IFolder which may related to this handler.
My question is how I translate object of "IFolderHandler" into object of "IFolder"?
So I can know the parent folder name of file in change set.
Many thanks!