gpt4 book ai didi

windows - 将 .txt 上传到 FTP 的批处理文件

转载 作者:可可西里 更新时间:2023-11-01 12:40:53 26 4
gpt4 key购买 nike

我为此设置了一个单独的 FTP 帐户。

这是信息:

FTP Username: ahk@proflightsimulatoreview.com
FTP Server: ftp.proflightsimulatoreview.com
FTP Server Port: 21
FTP Password: ahktest

我要上传的文本文件:C:\Users\Kyle\Desktop\ftptest\thetest.txt

请告诉我如何使用批处理执行此操作。我的理解是,您使用 FTP 命令创建一个单独的 txt 文件,然后使用批处理文件来运行它。嗯,我一定是没有插入正确的信息,因为它不起作用。

所以我在这里给你信息。请告诉我如何上传文本文件。

最佳答案

我只是把 HELLO.TXT 放在你的 ftp 根目录下;

1。将其保存为 MYFTP.bat:

@echo off
echo user ahk@proflightsimulatoreview.com> ftpcmd.dat
echo ahktest>> ftpcmd.dat
echo put %1>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n -s:ftpcmd.dat ftp.proflightsimulatoreview.com
del ftpcmd.dat

2。从命令行,在与 MYFTP.BAT 相同的目录中,运行;

MYFTP.BAT c:\temp\hello.txt

结果

220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 2 of 50 allowed.
220-Local time is now 05:17. Server port: 21.
220 You will be disconnected after 15 minutes of inactivity.
ftp> user ahk@proflightsimulatoreview.com
331 User ahk@proflightsimulatoreview.com OK. Password required

230-OK. Current restricted directory is /
230 0 Kbytes used (0%) - authorized: 51200 Kb
ftp> put hello.txt
200 PORT command successful
150 Connecting to port 59363
226-0 Kbytes used (0%) - authorized: 51200 Kb
226-File successfully transferred
226 0.563 seconds (measured here), 14.20 bytes per second
ftp: 8 bytes sent in 0.34Seconds 0.02Kbytes/sec.
ftp> quit
221-Goodbye. You uploaded 1 and downloaded 0 kbytes.
221 Logout.

关于windows - 将 .txt 上传到 FTP 的批处理文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7937963/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com