GetCurrentDirectory

GetCurrentDirectory 可检索 ftp 服务器上的当前目录。 任何文件功能(例如上传或下载)都与此目录相关。

语法

STRING GetCurrentDirectory()

返回结果

FTP用于在网络计算机之间传输文件的协议。 服务器上的当前工作目录,为字符串。

示例

回显当前 FTP 工作目录的示例:

函数 Main

Dim FTPobj as Object

ip = "127.0.0.1"

port = 21

mode = FALSE

username = "anonymous"

password = "test@lnss.com"

Set FTPobj=FTP.Connect (ip,21,mode,username,password)

cdir = FTPobj.GetCurrentDirectory

echo cdir

End 函数