找不到dirent.h中的seekdir()for Windows(C ++)

时间:2016-08-18 07:33:49

标签: c++ c windows dirent.h


我实际上在一个项目上工作,我必须浏览目录,因为我不想使用它直接使用它。所以我不想使用它直接使用Boost。 因此,我发现这篇帖子<dirent.h> in visual studio 2010 or 2008导致http://www.softagalleria.net/dirent.php这里我下载并安装了dirent.h 所以dirent.h已经安装了,我使用像opendir,readdir这样的基本函数没有问题,但是当我想使用seekdir()函数时,它似乎不存在于库中,所以我进入dirent.h来验证我的假设并且(感谢Ctrl + F)seekdir确实缺失 我是否想念一些东西,或者我必须找到一个技巧才能获得这个功能......? 感谢你。

2 个答案:

答案 0 :(得分:1)

该标题中唯一可用的功能是:

DIR *opendir (const char *dirname);
struct dirent *readdir (DIR *dirp);
int closedir (DIR *dirp);
void rewinddir (DIR* dirp);

没有技巧可以获得所需的功能。你只需要为此找到另一个库。

答案 1 :(得分:1)

enter image description here

如果您无法找到标题文件dirent.h,请尝试使用WIN32_FIND_DATAFindFirstFile()FindNextFile()作为替代方案。提交了两个不同的代码。一个用于Visual Studio 6.o,另一个用于Visual Studio 2013,需要使用宽字符。

Visual Studio 6.0代码:

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

using namespace std;


void listdirandfiles(string dir){
    HANDLE hFind;
    WIN32_FIND_DATAA data;

    hFind = FindFirstFileA(dir.c_str(), &data);
    if (hFind != INVALID_HANDLE_VALUE) {
        do {
            printf("%s\n", data.cFileName);
        } while (FindNextFile(hFind, &data));
        FindClose(hFind);
    }
}

int main(int argc, char** argv){

        string dir = "c:\\*.*";
        cout<<"\nListing directories or files..\n\n";
        listdirandfiles(dir);

        cout<<"\nPress ANY key to close.\n\n";
        cin.ignore(); cin.get();
return 0;
}
Visual Studio 2013的

代码:

// visual studio 2013
// listdirConsoleApplication15.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

#include <windows.h>
#include <tchar.h>
#include <stdio.h>
#include <iostream>
#include <string>
using namespace std;


wchar_t *convertCharArrayToLPCWSTR(const char* charArray)
{
    wchar_t* wString = new wchar_t[4096];
    MultiByteToWideChar(CP_ACP, 0, charArray, -1, wString, 4096);
    return wString;
}

void listdirandfiles(char *wstr){
    WIN32_FIND_DATA FindFileData;
    HANDLE hFind;
    hFind = FindFirstFile(convertCharArrayToLPCWSTR(wstr), &FindFileData);

    do{
        _tprintf(TEXT("%s\n"), FindFileData.cFileName);
    } while (FindNextFile(hFind, &FindFileData));

    FindClose(hFind);

}

int main( )
{

    char *wstr = "c:\\*.*";

    cout << "\nListing directories or files..\n\n";

    listdirandfiles(wstr);

    cout << "\nPress ANY key to close.\n\n";
    cin.ignore(); cin.get();

    return 0;
}