私はこれで終わりです。リモートFTPサーバーにディレクトリが存在するかどうかを確認する必要があります。これが私が考えていることです:
//ls - lists the names of the files in the remote directory
string query = "ls /public_html/somefolder/";
//prepare to send
headers = curl_slist_append(headers, query.c_str());
curl_easy_setopt(curl, CURLOPT_QUOTE, headers);
//send query to ftp server
res = curl_easy_perform(curl);
//check result
if(res == CURLE_OK) {
cout << "FOLDER EXISTS";
} else {
cout << "FOLDER DOESN'T EXIST";
}
res
変数に何が含まれているかを確認すると、次のように出力されます。
CURLE_QUOTE_ERROR(21)。
これを正しく行う方法についてのアイデアはありますか?私はグーグルをたくさん検索しました。