I am using the HeatDirectory task in a Wix-Project to fetch some files. I would furthermore like to use a symlink in the HeatDirectory Directory parameter to always use the folder the shortcut is pointing to. However, it seems the parameter feels not very comfortable with this symlink, so I tried creating a workaround by copying the files before harvesting them.
<Exec Command="xcopy \\myFileServer\Shortcut2LatestFiles\*.* c:\mytmp" ContinueOnError="true"/>
<HeatDirectory OutputFile="files.wxs" Directory="c:\mytmp"
(... some more parameters ...) />
Unfortunately this workaround is not working, because xcopy does not resolve the symlink either. Anyway I am not very happy about it and would prefer heat to directly use the shortcut. Is there a way to do so?
EDIT: the missing part actually were the quotes, like Alexey suggested - the xcopy part is working if I use
<Exec Command="xcopy "c:\TestFolderSymlink" "c:\testtarget\" /y" />
Funny enough they do not seem to be required on the command line.
EDIT 2: using the quotes, the direct use of the symlink in the heatdirectory task is possible too. However, be aware I am using a symlink (created by mklink, some info here) here, not a shortcut (.lnk-File). Actually the Shortcut will not work this way.
xcopy, fromheat? – Alexey Ivanov Mar 31 '12 at 7:05"around directories, maybe it helps… – Alexey Ivanov Apr 1 '12 at 19:20