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 1838070
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T06:25:58+00:00 2026-05-17T06:25:58+00:00

Okay so I’m trying to make a file browser program, and I’m in the

  • 0

Okay so I’m trying to make a file browser program, and I’m in the basics right now but this line here:

fprintf(stderr, "stat returned %i\n", stat(files[curser].c_str(), &st));

Says that stat is returning -1 (fail) and I am wondering why. Can anyone tell me? Here is the full source:

#include <SDL/sdl.h>
#include <SDL/sdl_image.h>

#include <SDL/SDL_audio.h>
#include <SDL/SDL_mixer.h>

#include <SDL/SDL_ttf.h>

#include <iostream>
#include <sstream> // String stream library
#include <string>
#include <stdio.h>
#include <vector>
#include <fstream>
#include <ios>

#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>

#define TICK_INTERVAL    30

using namespace std;

extern "C" int SDL_main(int argc, char *argv[]);

const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
const int SCREEN_BPP = 16;

SDL_Surface *screen = NULL;
SDL_Surface *message = NULL;

bool keys[322];

TTF_Font *font = NULL;
SDL_Color textColor = { 255, 255, 255};
SDL_Color highlightColor = { 255, 0, 0};

Uint32 TimeLeft(void)
{
    static Uint32 next_time = 0;
    Uint32 now;

    now = SDL_GetTicks();
    if ( next_time <= now ) {
        next_time = now+TICK_INTERVAL;
        return(0);
    }
    return(next_time-now);
}


void init(){

    // initialize SDL video. If there was an error SDL shows it on the screen
    if ( SDL_Init( SDL_INIT_EVERYTHING) < 0 )
    {
        fprintf(stderr, "Unable to init SDL: %s\n", SDL_GetError() );
        SDL_Delay( 5000 );
       // exit(EXIT_FAILURE);
    }

    // make sure SDL cleans up before exit
    atexit(SDL_Quit);
    SDL_ShowCursor(SDL_DISABLE);

    // create a new window
    screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, SDL_DOUBLEBUF|SDL_HWSURFACE );
    if ( !screen )
    {
        fprintf(stderr, "Unable to set video: %s\n", SDL_GetError());
        SDL_Delay( 5000 );
     //   exit(EXIT_FAILURE);
    }

    SDL_WM_SetCaption("Dir Reader", "Dir Reader");


    TTF_Init();
    //SDL_JoystickEventState(SDL_ENABLE);
   // joystick = SDL_JoystickOpen(0);

}

void cleanup(){

     // we have to quit SDL
     SDL_Quit();
     exit(EXIT_SUCCESS);
}

void apply_surface ( int x, int y, SDL_Surface* source, SDL_Surface* destination ){

     // make a temporary rectangle to hold the offsets
     SDL_Rect offset;

     // give the offsets to the rectangle
     offset.x = x;
     offset.y = y;

     // blit the surface
     SDL_BlitSurface( source, NULL, destination, &offset );
}

void apply_surface ( int sourceX, int sourceY, int x, int y, SDL_Surface* source, SDL_Surface* destination ){

     // make a temporary rectangle to hold the offsets
     SDL_Rect offset;
     SDL_Rect sourceRect;

     // give the offsets to the rectangle
     offset.x = x;
     offset.y = y;
     sourceRect.x = sourceX;
     sourceRect.y = sourceY;
     sourceRect.h = source->h;
     sourceRect.w = source->w;

     // blit the surface
     SDL_BlitSurface( source, &sourceRect, destination, &offset );
}

void apply_surface ( int sourceX, int sourceY, int sourceW, int sourceH, int x, int y, SDL_Surface* source, SDL_Surface* destination ){

     // make a temporary rectangle to hold the offsets
     SDL_Rect offset;
     SDL_Rect sourceRect;

     // give the offsets to the rectangle
     offset.x = x;
     offset.y = y;
     sourceRect.x = sourceX;
     sourceRect.y = sourceY;
     sourceRect.h = sourceH;
     sourceRect.w = sourceW;

     // blit the surface
     SDL_BlitSurface( source, &sourceRect, destination, &offset );
}

int getdir (string dir, vector<string> &files)
{
    DIR *dp;

    struct dirent *dirp;
    if((dp  = opendir(dir.c_str())) == NULL) {
        cout << "Error(" << errno << ") opening " << dir << endl;
        return errno;
    }

    while ((dirp = readdir(dp)) != NULL) {
        files.push_back(string(dirp->d_name));
    }

    closedir(dp);
    return 1337;
}

int SDL_main( int argc, char* argv[] )
{
    printf("init.\n");
    init();

    font = TTF_OpenFont( "GOODTIME.ttf", 15 );

    bool done = false;

    string dir = "C:/";
   // dir = dir.substr(0, dir.size() - 1);

    int curser = 0;

    while(!done){

    vector<string> files = vector<string>();

    if(getdir(dir,files) == errno){
         printf("error number: %i.\n", errno);
    }

        SDL_Event event;
        while (SDL_PollEvent(&event))
        {
            // Close window : exit
            if( event.type == SDL_QUIT )
                    done = true ;

            else if (event.type == SDL_KEYDOWN )
            {
                keys[event.key.keysym.sym] = true;
            }

            else if (event.type == SDL_KEYUP )
            {
                keys[event.key.keysym.sym] = false;
            }
        }

        if (keys[SDLK_x]){
            struct stat st;

            fprintf(stderr, "stat returned %i\n", stat(files[curser].c_str(), &st));

            if(S_ISDIR(st.st_mode)){

                if(files[curser][0] == '.' && files[curser][1] == '.'){
                    dir = dir.substr(0, dir.size() - 1);
                    dir = dir.substr(0, dir.find_last_of('/'));
                }

                else{
                    string temp = string(files[curser]);

                    dir += "/";
                    dir += temp;
                }
            }

            curser = 1;

            keys[SDLK_x] = false;
        }

        if (keys[SDLK_UP]){
           curser--;

            if(curser <= 0){
                curser = (int) (files.size() - 1);
            }

            keys[SDLK_UP] = false;
        }


        if (keys[SDLK_DOWN]){
            curser++;

            if(curser >= (int) files.size()){
                curser = 1;
            }

            keys[SDLK_DOWN] = false;
        }

        SDL_Rect rect;
        rect.x = 0;
        rect.y = 0;
        rect.h = 480;
        rect.w = 640;

        SDL_FillRect(screen, &rect, 0x000000);

        message = TTF_RenderText_Solid( font, dir.c_str(), textColor );

        apply_surface(0, 0, message, screen);

        for(int i = 0; i < (int) files.size(); i++){

            if(curser == i){
                message = TTF_RenderText_Solid( font, files[i].c_str(), highlightColor );
            }

            else{
                message = TTF_RenderText_Solid( font, files[i].c_str(), textColor );
            }

            apply_surface(0,  25 + (i * 15), message, screen);
        }

        SDL_Delay(TimeLeft());
        SDL_Flip(screen);
    }

    cleanup();
    return 0;
}
  • 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-17T06:25:58+00:00Added an answer on May 17, 2026 at 6:25 am

    Yes, actually you can tell yourself. If stat fails, it will set the errno variable to indicate why. You just need to find out what that’s set to. You may also want to ensure that files[curser].c_str() itself is valid even though you’ve stated it’s set to "c:\".

    Even if it is what you state, it may be that stat doesn’t like working on the root directory in that form. This will depend a great deal on the implementation you’re using (you should add that as a tag).

    In other words, change your line to something like:

    int x = stat(files[curser].c_str(), &st);
    fprintf(stderr, "stat returned %d '%s' %d\n", x, files[curser].c_str(), errno);
    

    For what it’s worth (and that may not be much), the following program works fine under VS2008:

    #include <stdio.h>
    #include <errno.h>
    #include <sys/stat.h>
    
    int main(int argc, char* argv[]) {
        struct stat st;
        int x = stat("c:\\", &st);
        fprintf(stderr, "stat returned %d %d\n", x, errno);
        return 0;
    }
    

    outputting:

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

Sidebar

Related Questions

No related questions found

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.