0

我正在编写一个 C++ 控制台应用程序来列出给定目录中的所有文件。我的代码如下,但它总是返回“INVALID_HANDLE_TRUE”。我使用 windows.h 库并使用 WIN 32 FIND DATA 和 FindFirstFile 函数打开一个目录

谢谢!

#include <iostream>
#include <string>
#include <vector>
#include <windows.h>

using namespace std;

int getDirectory(const char *directory, vector<string> &files)
{
    string storage;
    WIN32_FIND_DATA fd;
    HANDLE h = FindFirstFile((LPCWSTR)directory, &fd);
    if (h == INVALID_HANDLE_VALUE)
    { 
        cout << "Invalid handle for: " << directory; 
        return 0; 
    }

    while(1){
        cout << (fd.cFileName) ;
        if (FindNextFile(h, &fd) == FALSE) 
        { 
            break; 
        }
    }
    return 1;
}

int main()
{
    vector <string> files;
    char *directory;
    cout << "Directory: ";
    // cin >> directory;

    directory ="c:\\*.*";
    cout << directory << endl;
    getDirectory(directory, files);

    for (unsigned int i = 0; i< files.size(); i++)
    {
        cout << files[i] << endl;
    }

    cin.ignore();

    return 0;
}
4

1 回答 1

2

你的directory变量是类型const char *。我怀疑你UNICODE正在为预处理器定义,这意味着它FindFirstFile实际上是FindFirstFileW- 即它需要一个const wchar_t *.

尝试更改FindFirstFileFindFirstFileA,明确请求以 aconst char *作为其第一个参数的函数的 ANSI 变体,并且您不再需要不正确的强制转换。

于 2013-06-18T10:18:02.007 回答