如何使用 FTP 上下傳檔案
出自VFP Wiki
[category:Internet相關問題]
目錄 |
來源
- http://www.news2news.com/vfp/?search=WININET.DLL&x=3&y=5 (小茂)(需註冊)
- http://fox.hanyu.com.tw/View.aspx?fbId=7&Id=18720 (summer)
- http://fox.hanyu.com.tw/View.aspx?fbId=1&Id=17696 (erwin_ho)
- http://fox.hanyu.com.tw/View.aspx?fbId=3&Id=17031
- http://www.chieftain.idv.tw/archives/000511.html
- http://fox.hanyu.com.tw/View.aspx?fbId=1&Id=927 (jaime47)
- http://fox.hanyu.com.tw/View.aspx?fbId=1&Id=79 (廖大)
- http://vfp.sunyear.com.tw/viewtopic.php?t=2240&highlight=FTP (小賴)
- http://vfp.sunyear.com.tw/viewtopic.php?t=534&highlight=FTP (Ruey)
- http://vfp.sunyear.com.tw/viewtopic.php?t=91&highlight=FTP (Ruey)
- http://vfp.sunyear.com.tw/viewtopic.php?t=1196&highlight=FTP (Ruey)
提供者
- 小茂
- jegro
- summer
- erwin_ho
- jaime47
- 廖大
- 小賴
- Ruey
範例
使用 FTP command
最簡單的FTP上傳方式 by jegro,其他相關FTP指令使用說明,可以在```命令列模式```下執行 ftp, 再輸入 help, 即可得知.
在 VFP 下,
RUN FTP -n -s:FILE.TXT
而 FILE.TXT 的內容,則應是
OPEN 127.0.0.1 (FTP的IP) USER test 123456 (帳號 密碼) ASCII PUT c:\test\test.txt (上傳檔案名稱) BYE (離開FTP)
使用 ezFTP OCX Control
- http://www.coolstf.com/docs/ezftp.html (簡介與說明)
- http://www.programmersheaven.com/zone15/cat722/2321.htm (下載點)
備註
Ruey 提供的幾個連結,相當實用,請自行參考...