Is this possible with GetRemoteFile method

Is this possible with GetRemoteFile method

Anonymous
Not applicable
600 Views
1 Reply
Message 1 of 2

Is this possible with GetRemoteFile method

Anonymous
Not applicable
I'm trying to download a .dvb file from my Web site and load it locally into AutoCAD. I can download with the Getremotefile method with out any problems. The problem is with the downloaded file, it is unusable. When I try to load the file manually I get a message indicating 'unable to load file'. In comparing the downloaded file size with the file on my Web server, the downloaded file is considerably smaller.

So, hopefully someone can tell me if I'm doing something wrong?

Code:
Dim strURL As String
Dim strLocalName As String

strUrl = "http://DomainName/myFile.dvb"

thisDrawing.utility.getremotefile strUrl, strLocalName, true

Thanks in advance!
0 Likes
601 Views
1 Reply
Reply (1)
Message 2 of 2

andy62
Contributor
Contributor
Hi Eddie
I hope this code help you
andrea

strLocalFilePath = "c:\storedfile"
strLocalFile = ""
strLocalUrl = strLocalFilePath & "\ACAD\" & "myFile.dvb"
strRemoteUrl = "http://DomainName/myFile.dvb"
Utility.GetRemoteFile(strRemoteUrl, strLocalFile, True)
On Error Resume Next
FileSystem.MkDir(strLocalFilePath & "/ACAD")
FileSystem.FileCopy(strLocalFile, strLocalUrl)
On Error GoTo 0
If Utility.IsRemoteFile(strLocalFile, strRemoteUrl) Then
boolDownload = True
Else
boolDownload = False
End If
0 Likes