Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6911749
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T08:59:49+00:00 2026-05-27T08:59:49+00:00

I somehow messed up the includes , but weren’t able to actually find the

  • 0

I somehow messed up the includes, but weren’t able to actually find the error:

#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <errno.h>
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>

#ifdef DEBUG
#define DLOG(x) printf(x)
#define PLOG(x,y) printf(x,y)
#else
#define DLOG(x)
#define PLOG(x,y)
#endif

harddrive::Results* harddrive::search_for(char* start,char* target,char** ignore,int size) {
PLOG("work directory: %s",start);
DIR* curr_dir = opendir(start);
Results* local = new Results;

if(!curr_dir) {
    printf(" opendir() failure, probably no real directory: %s",start);
    errno = 0;
    return NULL;
}

struct dirent* elem;
while( (elem = readdir(curr_dir)) ) {
    //form URI
    char* uri = form_uri(start,curr_dir->d_name); //here is the actual error
    struct stat st;
    lstat(elem->d_name,&st);
    if( S_ISDIR(st.st_mode) ) {
        if( !do_ignore(uri,ignore,size) )
            local = merge(local,search_for( form_uri(start,elem->d_name), target,ignore,size));
    } 
    else if( S_ISREG(st.st_mode) ) { //this is line 41

Compiler output:

Directory.cpp: In function ‘harddrive::Results* harddrive::search_for(char*, char*, char**, int)’:
Directory.cpp:34:38: error: invalid use of incomplete type ‘struct DIR’
/usr/include/dirent.h:128:16: error: forward declaration of ‘struct DIR’

€:I am sorry for the inconvenience but i pasted an old error code, before I started switching around lines, but now it is correct.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T08:59:49+00:00Added an answer on May 27, 2026 at 8:59 am

    curr_dir->d_name should be elem->d_name.

    As the error says, you’re incorrectly trying to dereference a pointer to the opaque type DIR.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a php script which includes the date() function. But somehow it messes
Somehow my master and my origin/master branch have diverged. I actually don't want them
I'm not entirely sure how I got to this situation but somehow I'm getting
This seems really silly but I somehow hit a key combination by mistake in
I was thinking to develop web project on spring mvc. But somehow I was
Unfortunately, my original post somehow messed up, and when I went to fix the
Somehow, JavaScript makes sense of the bitwise operations NaN ^ 1 , Infinity ^
Somehow my code doesn't work any more (it did work before with the exact
Somehow this doesn't work... var paper = Raphael(test, 500, 500); var testpath = paper.path('M100
Somehow my Properties window has become detached. When I view properties of any item

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.