I have an application—actually a web-framework+web-server—which requires its folders—including the application I'm hosting—to be in a child directory; e.g., in: \htdocs.
The application/project I'm hosting is part of a bigger git repository, thus also cannot be moved outside of a child directory.
On Windows, is it possible to do some sort of symbolic linkage or in-sync folder replication?
I.e.: so when I update the contents of the folder it is also updated in its sister location.
mklinkandjunctioncommands, both are giving me: "Error creating foo: Cannot create a file when that file already exists." errors.E:>mkdir a && echo fff > a\bar.txt && junction a fooandE:>mkdir a && echo fff > a\bar.txt && mkdir foo && junction a fooboth gave this error. – A T Jul 28 '12 at 2:26