Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
FTP via DOS BAT
Message
From
17/07/2003 22:39:46
 
 
To
17/07/2003 13:23:37
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00810533
Message ID:
00811375
Views:
10
@echo off
echo open [IPADDRESS-FTP]>>script.txt
echo [username]>>script.txt
echo [password]>>script.txt
echo cd HO>>script.txt
echo pwd>>script.txt
echo type ascii>>script.txt
echo hash>>script.txt
echo ls>>script.txt
echo bye>>script.txt

ftp -s:script.txt


GOTO EXIT


:EXIT

----
as far as encapsulating an ftp session - i'm sorry - thats not what you were asking originally .
Please note the command line change I made above ...


THERE ARE MANY ways to use ftp in VFP - all centered around encapsulating a control .. There are some good examples with wwIP stuff - take a look there and let me know what you think.

I personally like Mabry's toolset a lot .


hth - mondo regards [Will]
>Hi William,
>
>If all possible, I would rather send the file via VFP8.0 and have a program do it- Much cleaner. But, currently I have not had much experience doing that and I'm using a program written in '99 and all is well except that the client needs the file sent in ascii not Binary.
>
>The programs errors out if I use the binary parameter.
>So, if you know where I can get a working FTP for VFP, or some program that uses the WinInet dll, that would be great.
>(i.e.)
> IF !sz_ftp.PutFtpFile("xsjflcp2.txt", "xsjflcp5.txt")
> ?sz_ftp.GetErrorCode(.T.)
> ENDIF
>
>The put class was:
>fResult = FtpPutFile(THIS.nConnect_Handle, @lcLocalFile, @lcRemoteFile, ;
> FTP_TRANSFER_TYPE_BINARY, 0)
>
>Errors on this:
>fResult = FtpPutFile(THIS.nConnect_Handle, @lcLocalFile, @lcRemoteFile, ;
> FTP_TRANSFER_TYPE_ASCII, 0)
>
>
>Any help would be greatly appreciated.
>
>Craig
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform