c-如何获取LIST命令的响应消息(从CFTPConnection)
作者:互联网
如何获得使用CFTPConnection :: Command()执行的LIST命令的响应.我可以得到目录清单.但是没有可用空间大小信息.
Windows IIS FTP服务器提供可用空间作为LIST命令的响应:
How to check free space in a FTP Server?
解决方法:
MFC CFTPConnection
class似乎没有API可以访问已执行命令的响应消息.
尽管该类只是Win32 Wininet函数的包装,但是您可以在调用CFTPConnection::Command
之后立即使用InternetGetLastResponseInfo
function来检索响应.
Retrieves the last error description or server response on the thread calling this function.
标签:wininet,c,winapi,ftp,mfc 来源: https://codeday.me/bug/20191009/1879376.html