The second parameter of the Load method (the RootPath parameter) is not a parameter for you to specify where the file will be downloaded to. It is not an input parameter. It is an output parameter. Per the OTA API reference:
Public Sub Load( _
ByVal synchronize As Boolean, _
ByRef RootPath As String _
)
Parameters
synchronize
If true, program run waits for download to complete. Otherwise, download is asynchronous.
RootPath
Output string variable. After the method returns, the value is the path to which the file was downloaded on the client machine.
There is no option to let you specify the download location. All you can do is move the file after it has been downloaded.
Public Sub Load( _
ByVal synchronize As Boolean, _
ByRef RootPath As String _
)
Parameters
synchronize
If true, program run waits for download to complete. Otherwise, download is asynchronous.
RootPath
Output string variable. After the method returns, the value is the path to which the file was downloaded on the client machine.
There is no option to let you specify the download location. All you can do is move the file after it has been downloaded.