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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:54:24+00:00 2026-05-16T08:54:24+00:00

I am trying to make a simple program that handles files and directories, but

  • 0

I am trying to make a simple program that handles files and directories, but I have two major problems:

  • how can I check whether a file or directory exists or not, and
  • how do I know if it is a file, directory, symbolic link, device, named pipe etc.? Mainly file and directories matter for now, but I’d like to know the others too.

EDIT: Too all of those who are suggesting to use stat() or a similar function, I have already looked into that, and while it might answer my first question, I can’t figure out how it would answer the second…

  • 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-16T08:54:25+00:00Added an answer on May 16, 2026 at 8:54 am

    Since you’re inquiring about named pipes/symlinks etc, you’re probably on *nix, so use the
    lstat() function

    struct stat info;
    
    if(lstat(name,&info) != 0) {
      if(errno == ENOENT) {
       //  doesn't exist
       } else if(errno == EACCES) {
        // we don't have permission to know if 
       //  the path/file exists.. impossible to tell
       } else {
          //general error handling
       }
      return;
    }
    //so, it exists.
    
    if(S_ISDIR(info.st_mode)) {
      //it's a directory
    } else if(S_ISFIFO(info.st_mode)) {
      //it's a named pipe 
    } else if(....) {
    }
    

    Se docs here for the S_ISXXX macros you can use.

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

Sidebar

Related Questions

I am trying to make a simple program that could open a new activity
I've been trying to make a simple program that takes the user input, until
I am trying to make a simple program with SFML. So far I have
Trying to make simple minesweeper game in python, but have one problem. I have
I'm trying to make a simple program that continually displays and updates a label
I'm new to android and I'm trying to make a simple android program that
I am currently trying to make a very simple C program for school that
i am trying to make a very simple program that invert the pixels position
I am trying to make a simple AJAX program, that always displays the newest
I am trying to make simple java code that will check if a table

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.