When attempting to move a document to another folder, we call GetEntryByPath to see if the destination exists. If not, we use LFFolder.Create to create the destination first. If the destination path uses tokens (e.g. \Test\%(Date)), then the GetEntryByPath call fails because it treats the token literally. However, the LFFolder.Create call recognizes the token and creates the appropriate folder. A conflict arises if the destination path (using a token) already exists. The GetEntryByPath fails because of the token and the LFFolder.Create fails because the folder already exists.
Can GetEntryByPath be called with an option to interpret tokens to prevent this conflict?
Thank you.