為什麼這篇pscp指令鄉民發文收入到精華區:因為在pscp指令這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者williamsm (Roger)看板C_and_CPP標題[問題] 用system()送cmd...
開發平台(Platform): (Ex: Win10, Linux, ...)
win7
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
VS2013
問題(Question):
目前使用system(str_cmd)去下PSCP指令,在確定指令正確後準備送出
出現 L"buffer is too small" && 0 的錯誤訊息
預送出的str_cmd指令如下:
const char* str_cmd = pscp -sftp -l A -pw B -P 22
"C:\Users\Documents\Visual Studio 2013\Projects\xxx\xxxxxx\xxxx\ffff.txt"
sftp.Kkkk.com:
有先確認從cstring轉const char*與直接用cmd下是OK的,但送到system後就發生錯誤
我認為應該是system給帶的參數限制之類的,想請問這段要怎麼去避免呢?謝謝
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 60.251.182.146
※ 文章網址: https://www.ptt.cc/bbs/C_and_CPP/M.1480505504.A.970.html
原來是自己在轉字串的時候發生問題,轉換方式如下:
const char* cstringtoconstchar(CString str_temp_constchar)
{
int sizestr;
LPTSTR pStr1;
char result_temp1[200];
size_t str_temp;
sizestr = (str_temp_constchar.GetLength() + 1);
pStr1 = new TCHAR[sizestr];
_tcscpy_s(pStr1, sizestr, str_temp_constchar);
wcstombs_s(&str_temp, result_temp1, 200, pStr1, 200);
}
我的Cstring轉const char*使用到_tcscpy_s
而我的result_temp1[200]之前設定到result_temp1[1000],故就如E大所說
但目前又遇到另個問題,發現用下面的做法沒有反應
CString Test1=
_T("pscp -sftp -l A -pw B -P 22 \"C:\\Users\\test.txt\" sftp.test.com:");
const char* chr_str=cstringtoconstchar(Test1);
system(chr_str);
接著把同樣字串給const char*就有反應,想再請教不知道自己在哪個部分有設定錯誤呢?
const char* chr_str_2=
("pscp -sftp -l A -pw B -P 22 \"C:\\Users\\test.txt\" sftp.test.com:");
system(chr_str2);
※ 編輯: williamsm (61.220.206.157), 12/01/2016 19:14:05