我已获得以下代码:
int _tmain(int argc, _TCHAR* argv[]) {
_finddata_t dirEntry;
intptr_t dirHandle;
dirHandle = _findfirst("C:/*", &dirEntry);
int res = (int)dirHandle;
while(res != -1) {
cout << dirEntry.name << endl;
res = _findnext(dirHandle, &dirEntry);
}
_findclose(dirHandle);
cin.get();
return (0);
}
这样做是打印给定目录(C :)包含的所有内容的名称。现在我必须打印出子目录中所有内容的名称(如果有的话)。到目前为止,我已经得到了这个:
int _tmain(int argc, _TCHAR* argv[]) {
_finddata_t dirEntry;
intptr_t dirHandle;
dirHandle = _findfirst(argv[1], &dirEntry);
vector<string> dirArray;
int res = (int)dirHandle;
unsigned int attribT;
while (res != -1) {
cout << dirEntry.name << endl;
res = _findnext(dirHandle, &dirEntry);
attribT = (dirEntry.attrib >> 4) & 1; //put the fifth bit into a temporary variable
//the fifth bit of attrib says if the current object that the _finddata instance contains is a folder.
if (attribT) { //if it is indeed a folder, continue (has been tested and confirmed already)
dirArray.push_back(dirEntry.name);
cout << "Pass" << endl;
//res = _findfirst(dirEntry.name, &dirEntry); //needs to get a variable which is the dirEntry.name combined with the directory specified in argv[1].
}
}
_findclose(dirHandle);
std::cin.get();
return (0);
}
现在我并没有要求提供整个解决方案(我希望能够自己完成)但是只有这一点我无法理解TCHAR * argv的。我知道argv [1]包含我在&#34;命令参数&#34;下的项目属性中放置的内容,现在它包含我想要在其中测试我的应用程序的目录(C:/ users / name / New folder / *),其中包含一些包含子文件夹和一些随机文件的文件夹。 argv [1]目前给出以下错误:
错误:类型&#34; _TCHAR *&#34;的参数与#34; const char *&#34;
类型的参数不兼容
现在我已经搜索了TCHAR,我知道它是wchar_t *或char *,具体取决于使用Unicode字符集或多字节字符集(我目前使用的是Unicode)。我也明白转换是一个巨大的痛苦。所以我要问的是:如何使用_TCHAR和_findfirst参数最好地解决这个问题?
我计划将dirEntry.name连接到argv [1]以及连接&#34; *&#34;最后,在另一个_findfirst中使用它。我对代码的任何评论都很受欢迎,因为我还在学习C ++。
答案 0 :(得分:2)
请参阅此处:_findfirst用于多字节字符串,而_wfindfirst
用于宽字符。如果您在代码中使用TCHAR,那么使用_tfindfirst
(宏)将解析为非UNICODE上的_findfirst,以及UNICODE构建时的_wfindfirst。
而不是_finddata_t使用_tfinddata_t,它也将根据UNICODE配置解析纠正结构。
另一件事是你应该使用正确的文字,_T("C:/*")
将是L"C:/*"
在UNICODE构建,而"C:/*"
否则。如果您知道正在使用UNICODE定义构建,请使用std::vector<std::wstring>
。
顺便说一句。默认情况下,Visual Studio将使用UNICODE创建项目,您可能只使用_wfindfirst
等广泛版本的函数,因为没有充分的理由来构建非UNICODE项目。
TCHAR,我知道它是wchar_t *或char *,具体取决于使用UTF-8字符集或多字节字符集(我目前使用的是UTF-8)。
这是错误的,在UNICODE窗口中,apis使用UTF-16。 sizeof(wchar_t)==2
。
答案 1 :(得分:1)
使用这个简单的typedef
:
typedef std::basic_string<TCHAR> TCharString;
然后在TCharString
的任何地方使用std::string
,例如:
vector<TCharString> dirArray;
有关std::basic_string的信息,请参阅此处。