Hello
Thank you for your question and reaching out. I can understand you are having query related to Folder redirection.
Jnctions (also called symbolic links or reparse points) allows you to do that. You can use mklink in the command prompt (with /D for directory) to create them:
mklink /D C:\Source D:\Source
This will be transparent to applications - that is they will see it as a regular folder.
Reference:
------------------------------------------------------------------------------------------------------------------------------
--If the reply is helpful, please Upvote and Accept as answer--