3
std::wstring inxmpath ( L"folder" );
HANDLE hFind;
BOOL bContinue = TRUE;
WIN32_FIND_DATA data;
hFind = FindFirstFile(inxmpath.c_str(), &data); 
// If we have no error, loop through the files in this dir
int counter = 0;
while (hFind && bContinue) {
        std::wstring filename(data.cFileName);
        std::string fullpath = "folder/";
        fullpath += (const char* )filename.c_str();
        if(remove(fullpath.c_str())!=0) return error;
    bContinue = FindNextFile(hFind, &data);
    counter++;
}
FindClose(hFind); // Free the dir

我不明白为什么它不起作用,我认为它与 wstring 和 string 之间的转换有关,但我不确定。我有一个包含一些 .txt 文件的文件夹,我需要使用 C++ 删除所有这些文件。里面没有文件夹什么都没有。这有多难?

4

3 回答 3

2

其次,根据MSDN关于FindFirstFile功能:

“在目录中搜索名称与特定名称匹配的文件或子目录(如果使用通配符,则为部分名称)。”

我在您的输入字符串中看不到通配符,所以我只能猜测它会查找在当前执行目录中FindFirstFile命名的文件。"folder"

尝试寻找"folder\\*".

于 2012-09-17T15:16:32.990 回答
0

试试这个:

std::wstring inxmpath = L"c:\\path to\\folder\\"; 
std::wstring fullpath = inxmpath + L"*.*";

WIN32_FIND_DATA data; 
HANDLE hFind = FindFirstFileW(fullpath.c_str(), &data);  
if (hFind != INVALID_HANDLE_VALUE)
{
    // If we have no error, loop through the files in this dir 
    BOOL bContinue = TRUE; 
    int counter = 0; 
    do
    { 
        if ((data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
        {
            fullpath = inxmpath + data.cFileName; 
            if (!DeleteFileW(fullpath.c_str()))
            {
                FindClose(hFind);
                return error; 
            }
            ++counter; 
            bContinue = FindNextFile(hFind, &data); 
        }
    }
    while (bContinue);
    FindClose(hFind); // Free the dir 
} 
于 2012-09-17T21:16:19.177 回答
0

我可以看到2个问题:

1)如果你需要的话,我只会坚持使用宽弦。尝试改为调用DeleteFile(假设您的项目是 UNICODE),您可以传递一个宽字符串。

2)您正在使用相对路径,其中绝对路径会更健壮。

于 2012-09-17T15:20:06.640 回答