vcRedistPath top-level property
The path where the vc_redist.x64.exe file will be downloaded.
This path is computed by joining the tempDir with the last component of
the vcRedistUrl.
Example: If the tempDir is C:\Users\username\AppData\Local\Temp, then
the vcRedistPath will be C:\Users\username\AppData\Local\Temp\vc_redist.x64.exe.
Implementation
String vcRedistPath = join(tempDir, vcRedistUrl.split('/').last);