I am currently using the following script to copy all files with a specific prefix to the target directory:
for /f "delims==" %%k in ('dir "d:\Search Path\File Prefix*.*" /s /b') do copy "%%k" "d:\Target Directory\"
This works fine, but I would like to instead create a symlink to files containing any file changes. Can someone advise how I can do this?
Thank you very much
source share