📎 AI Summary:
The forum thread discusses how to create a mirror or synchronized version of a folder in Windows. The original poster asks if it's possible to have two identical folders where changes in one reflect in the other, and receives responses suggesting the use of symbolic links (mklink) as a solution. Participants clarify that this feature has been available in Windows for about 20 years, though it was not included in Windows XP, and note that using symbolic links can be powerful but should be done carefully. Overall, the thread confirms that symbolic links are the recommended method for this purpose.

Lucrezia90

New Member
Joined
Jun 23, 2022
Messages
1
Thread Author #1
Hello all! I have a strange question.
Is it possible to create 2 identical folders? I'm talking about making a folder inside "download" for example, and then having an identical copy of the folder on the desktop, so that when I move/change/rename something on the first, it reflects and modify on the second as well?
Thanks in advance! I hope my question was clear enough!
 

Solution
Is a symbolic link what you are looking for? It creates a reference to a directory from another directory, the link behaves like a directory.
Type
mklink
in a cmd-window to get help.

omulmeu

New Member
Joined
Jun 28, 2022
Messages
4
No, you can create a hyperlink to the folder you need so that you can access it from the desktop, but you can't make 2 similar folders
 

ussnorway

Windows Forum Team
Staff member
Joined
May 22, 2012
Messages
4,598
it is possible to sync 2 folders but that opens another can of worms
 

bochane

Essential Member
Joined
Oct 18, 2012
Messages
1,403
Is a symbolic link what you are looking for? It creates a reference to a directory from another directory, the link behaves like a directory.
Type
mklink
in a cmd-window to get help.
 

Solution