如何在没有 dirent.h 的情况下访问 C90 中的目录?

发布于 2024-10-10 10:59:52 字数 653 浏览 4 评论 0原文

我正在LabCVI基于C90工作。

手头的坦克将在“..\data”目录和子目录中找到“*.spec”文件的绝对路径。

我知道有解释如何使用 dirent.h 做到这一点,但我需要在没有 dirent.h 的情况下执行此操作(第一部分第二部分 )教程不是我想要的。LabCVI 不具有 dirent 标头,我无法从 Internet 因为 dirent.h 的依赖项与 LabCVI 不兼容。

一旦我删除了对 LabCVI 的所有依赖项,我计划迁移到更好的 IDE/语言,但我必须保持代码兼容到那一天。所以我无法使用 LabCVI 的目录实用程序。

我如何解决这个问题并获得我的目录访问权限?(代码将在 XP 机器上运行。)

i am working in LabCVI on the basis of C90.

The tanks at hand would be to find the absolute paths of "*.spec" files in the "..\data"" directory and subdirectories.

I am aware that there are explanationse how i can do this with dirent.h, but i need to do it without dirent.h. This (part I, part II ) tutorial is not what i am looking for. LabCVI does not feature the dirent header and i cannot import ist from the Internet because the dependencies of dirent.h are incompatible with LabCVI.

I plan to migrate to a better IDE/Language once i killed all dependencies to LabCVI, but i have to keep the code campatible to that day. So i cant use the directory utilities of LabCVI.

How can i work around this and get my directory access? (The Code will run on XP Machines.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

多孤肩上扛 2024-10-17 10:59:52

C 语言本身没有目录的概念,因此无法列出或访问它们。如果您的系统不符合 POSIX(指定 dirent.h)等更高级别的标准,那么您需要寻找特定于系统的解决方案。

The C language itself has no concept of directories and thus no way to list or access them. If your system doesn't conform to a higher-level standard like POSIX (which specified dirent.h) then you'll need to look for a system-specific solution.

悟红尘 2024-10-17 10:59:52

您可以使用 FindFirstFile 和类似的函数来执行此操作。
检查此示例代码以了解更多详细信息:http:// /msdn.microsoft.com/en-us/library/aa365200%28v=vs.85%29.aspx

You can use FindFirstFile and similar functions to do this.
Check this sample code for more details: http://msdn.microsoft.com/en-us/library/aa365200%28v=vs.85%29.aspx

猫弦 2024-10-17 10:59:52

维克拉姆的回答让我写了我使用的代码片段。

void findSpecFilesAndPrint(void){
    HANDLE hFind;
    WIN32_FIND_DATA FindFileData;

    hFind = FindFirstFile("*.*", &FindFileData);
    if (hFind == INVALID_HANDLE_VALUE){ 
        //FOUND NO FILE
        printf("No file found.\n");
    }
    else {
        printf("Files found - one function to find them all.\n");
        do{
            //DO THIS WITH ALL FILES FOUND
            printf(FindFileData.cFileName);
            printf("\n");
        }while (FindNextFile(hFind, &FindFileData) != 0);
        printf("And in the darkness bind them.\n");
        FindClose(hFind);
    }
}

查找当前目录下的所有文件

Vikram's answer led me to write this codesnippet wich i used.

void findSpecFilesAndPrint(void){
    HANDLE hFind;
    WIN32_FIND_DATA FindFileData;

    hFind = FindFirstFile("*.*", &FindFileData);
    if (hFind == INVALID_HANDLE_VALUE){ 
        //FOUND NO FILE
        printf("No file found.\n");
    }
    else {
        printf("Files found - one function to find them all.\n");
        do{
            //DO THIS WITH ALL FILES FOUND
            printf(FindFileData.cFileName);
            printf("\n");
        }while (FindNextFile(hFind, &FindFileData) != 0);
        printf("And in the darkness bind them.\n");
        FindClose(hFind);
    }
}

Finds all Files in the current directory

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文