BOOL RemoveDirectory(
LPCTSTR lpszDirectory
);
- lpszDirectory:要删除的目录的路径。
该方法返回一个布尔值,表示目录是否成功删除。如果返回 TRUE,则表示成功;如果返回 FALSE,则表示失败。
以下是一个示例,演示如何使用 RemoveDirectory 方法从 FTP 服务器上删除一个目录:
// 创建 CFtpConnection 对象
CFtpConnection ftpConnection;
// 连接到 FTP 服务器
if (ftpConnection.Open(_T("ftp.example.com"), _T("username"), _T("password")))
{
// 删除目录
if (ftpConnection.RemoveDirectory(_T("/remote_folder")) == TRUE)
{
// 目录成功删除,执行其他操作
}
else
{
// 删除目录失败,处理错误
TRACE(_T("Failed to remove directory on FTP server.\n"));
}
// 断开与 FTP 服务器的连接
ftpConnection.Close();
}
else
{
// 连接失败,处理错误
TRACE(_T("Failed to connect to FTP server.\n"));
}
在这个示例中,RemoveDirectory 方法用于删除 FTP 服务器上的 "/remote_folder" 目录。如果目录成功删除,你可以根据需要执行其他操作。最后,通过 Close 方法断开与 FTP 服务器的连接。
请注意,实际使用时,你需要根据需要替换示例中的服务器地址、用户名和密码,以及要删除的目录的路径。
转载请注明出处:http://www.zyzy.cn/article/detail/18016/MFC/CFtpConnection