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.)

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

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

link|improve this answer
worked like a charm – Johannes Jan 4 '11 at 9:32
feedback

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.

link|improve this answer
The system would be Windows XP. – Johannes Jan 3 '11 at 17:21
feedback

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

link|improve this answer
+1 for sharing the final solution – yeyeyerman Jan 4 '11 at 10:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.