| Author | Topic: File Transfer from/to Internet address |
---|
| Frank Toth | File Transfer from/to Internet address
on Sat, 23 Jun 2018 07:21:55 -0400I need to download, update and upload a number of files from an internet
address.
Can anyone direct me to information that would assist me in doing this in
XBase++
Frank Toth
Silver Mountain Software
Tel: (905)853-6922
Fax: (905)853-1709
Toll Free:(855)223-1627
support@silvermountain.ca
ftoth@silvermountain.ca
www.silvermountain.ca
---
This email has been checked for viruses by AVG.
https://www.avg.com |
| Raymond Fischbach | Re: File Transfer from/to Internet address
on Sat, 23 Jun 2018 16:47:51 +0200Frank Toth a formulé ce samedi :
> I need to download, update and upload a number of files from an internet
> address.
>
> Can anyone direct me to information that would assist me in doing this in
> XBase++
Hi Frank,
Have a look at MarshallSoft Computing "csc4xb" software.
It has a very friendly price and should do the job (and even much
more).
www.marshallsoft.com/csc4xb.htm
Regards,
Raymond |
| Jan Escholt | Re: File Transfer from/to Internet address
on Sat, 23 Jun 2018 17:45:59 +0200Have a look on the FTPClient(). Very powerfuill Xbase++ class.
Jan
Am 23.06.2018 um 13:21 schrieb Frank Toth:
> I need to download, update and upload a number of files from an internet
> address.
>
> Can anyone direct me to information that would assist me in doing this
> in XBase++
>
> |
| Thomas Braun | Re: File Transfer from/to Internet address
on Mon, 25 Jun 2018 09:39:28 +0200Frank Toth wrote:
> I need to download, update and upload a number of files from an internet
> address.
>
> Can anyone direct me to information that would assist me in doing this in
> XBase++
Hi,
I'm using WinSCP via scripting. First I create a WinSCP script, which I
then call via RunShell:
xRet := RunShell( "/console /log=winscp_session.log /script=upload.scp", "C:\Program Files (x86)\WinSCP\WinSCP.exe" )
HTH
Thomas |
| Claudio Driussi | Re: File Transfer from/to Internet address
on Mon, 25 Jun 2018 10:09:13 +0200Il 25/06/2018 09:39, Thomas Braun ha scritto:
> Frank Toth wrote:
>
>> I need to download, update and upload a number of files from an internet
>> address.
>>
>> Can anyone direct me to information that would assist me in doing this in
>> XBase++
>
> Hi,
>
> I'm using WinSCP via scripting. First I create a WinSCP script, which I
> then call via RunShell:
>
> xRet := RunShell( "/console /log=winscp_session.log /script=upload.scp", "C:\Program Files (x86)\WinSCP\WinSCP.exe" )
+1
I use WinSCP too, it's great.
But if you don't like to see the black console window, I suggest
to take a look to TRunProcess class from Pablo Botella which
can hide the window and redirect stdout and stderr to memory
strings.
Claudio
>
> HTH
> Thomas
> |
| Frank Toth | Re: File Transfer from/to Internet address
on Wed, 27 Jun 2018 07:34:09 -0400I just took a quick look at WinSCP.
It appears to work with FTP sites.
I have a exact file name I want to download from a regular site that is
being updated.
Example http://site-name.com/filename.zip and save it to somewhere on our
server with the same or other files name.
I then want to work on the file and upload a new file to another site
Example http://anothersite.com/newfile.zip
I need to do this with a whole bunch of files.
Can I write a script and call WinSCP to do this?
Frank Toth
Silver Mountain Software
Tel: (905)853-6922
Fax: (905)853-1709
Toll Free:(855)223-1627
support@silvermountain.ca
ftoth@silvermountain.ca
www.silvermountain.ca
"Thomas Braun" wrote in message
news:s33zf5xpogua$.xjzuk8z527nx.dlg@40tude.net...
> Frank Toth wrote:
>
>> I need to download, update and upload a number of files from an internet
>> address.
>>
>> Can anyone direct me to information that would assist me in doing this in
>> XBase++
>
> Hi,
>
> I'm using WinSCP via scripting. First I create a WinSCP script, which I
> then call via RunShell:
>
> xRet := RunShell( "/console /log=winscp_session.log /script=upload.scp",
> "C:\Program Files (x86)\WinSCP\WinSCP.exe" )
>
> HTH
> Thomas
>
> ---
> This email has been checked for viruses by AVG.
> https://www.avg.com
> |
| Carlos a Beling | Re: File Transfer from/to Internet address
on Wed, 27 Jun 2018 10:02:26 -0300Good morning.
Does not HttpClient() class is useful?
Fraternally
Beling
Em 27/06/2018 08:34, Frank Toth escreveu:
> I just took a quick look at WinSCP.
>
> It appears to work with FTP sites.
> I have a exact file name I want to download from a regular site that is
> being updated.
>
> Example http://site-name.com/filename.zip and save it to somewhere on
> our server with the same or other files name.
>
> I then want to work on the file and upload a new file to another site
>
> Example http://anothersite.com/newfile.zip
>
> I need to do this with a whole bunch of files.
>
> Can I write a script and call WinSCP to do this?
> |
| Thomas Braun | Re: File Transfer from/to Internet address
on Fri, 20 Jul 2018 10:33:35 +0200Frank Toth wrote:
> I just took a quick look at WinSCP.
>
> It appears to work with FTP sites.
> I have a exact file name I want to download from a regular site that is
> being updated.
[...]
>
> I need to do this with a whole bunch of files.
>
> Can I write a script and call WinSCP to do this?
Yes, of course... my upload script looks something like this:
option batch on
option confirm off
option synchdelete off
open put-name-of-FTP-connection-settings-here
put D:\wwwroot\hp10\00475\*.ll /Alaska/hp2/00475/
exit
HTH
Thomas |
| Carlos a Beling | Re: File Transfer from/to Internet address
on Tue, 26 Jun 2018 10:54:26 -0300Good morning.
It has an Old Class LoadFromUrl from Phil Ide that is working fine. It
is in the ACSN section of Xbase.
Fraternally
Beling
Em 23/06/2018 08:21, Frank Toth escreveu:
> I need to download, update and upload a number of files from an internet
> address.
>
> Can anyone direct me to information that would assist me in doing this
> in XBase++
>
> |