In project i have as normal files as links (shortcuts) to existing file:
In post-build event i want to copy all files, including links (but as real file) to other directory, for example:
"%RELEASEPATH%\Code\"
Using default xcopy command it do copy all files + directory, but not links:
xcopy /E /Y /R "$(ProjectDir)Code" "%RELEASEPATH%\Code\"
If there a way to copy linked files (as real files) with xcopy as well?