In Linux I am able to do this:
ln -s /tmp/somedir/* /tmp/otherdir/
Which will create links to all of the files within somedir in otherdir. Is there a way to preform a wildcard operation like this in Windows 2000 using junction.exe?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
junctiondoes not accept wildcards and indeed I believe thatlndoes not either. What happens is that the shell expands the wildcards and then passes the resulting list of files/directories toln. You can do the same with junction by using aforloop.That said, you talk about linking to files. Be aware that
junctiondoes not do that. It can only be used for creating directory symbolic links.