1

I am recently building a simple web browser just to test my internet skills. I came across the GetFtpConnection method of class CInternetSession, and I don't know how to "fill in" the pstrServer parameter, which indicates the FTP server name. I tried to Google it out, but I can't find any useful information. Can you tell me what is a server name? Is it something like www.google.com? Thank you very much.

4

2 回答 2

1

FTP 协议在很多地方都有描述,包括Wikipedia。链接页面中的示例显示了 FTP URL 的格式:

在此处输入图像描述

在上面的示例中,该<host>部分是GetFtpConnection函数中“服务器”的含义。

您还可以查看其他参数的位置,例如userpasswordmap port number

以下来自MSDN的代码示例显示了如何使用该函数:

微软

于 2013-08-18T18:08:40.647 回答
0

ptrServer是服务器的 DNS 名称 - 例如www.google.comftp.microsoft.com或其 IP 地址 - 例如74.125.131.105

于 2013-08-18T18:07:43.953 回答