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

  • Home
  • SEARCH
  • 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 8137727
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:14:57+00:00 2026-06-06T11:14:57+00:00

Possible Duplicate: Getting Filename from file descriptor in C Obtain filename from file pointer

  • 0

Possible Duplicate:
Getting Filename from file descriptor in C
Obtain filename from file pointer in C

I have a function here:

handle_file(FILE *file)
{
    if(condition)
    {
        print filename and other msg;
    }
}

The only thing we know here is the a pointer to the file; is it possible to get the filename according to the pointer?

  • 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-06-06T11:15:06+00:00Added an answer on June 6, 2026 at 11:15 am

    Check out this answer to obtain file descriptor and this answer to get file name from file descriptor. Should be OK on Linux (not sure about other operating systems).

    Here’s a quick working example (tested under Cygwin/Win7):

    #include <stdio.h>
    #include <unistd.h>
    #include <stdlib.h>
    
    int main()
    {
        int MAXSIZE = 0xFFF;
        char proclnk[0xFFF];
        char filename[0xFFF];
        FILE *fp;
        int fno;
        ssize_t r;
    
        // test.txt created earlier
        fp = fopen("test.txt", "r");
        if (fp != NULL)
        {
            fno = fileno(fp);
            sprintf(proclnk, "/proc/self/fd/%d", fno);
            r = readlink(proclnk, filename, MAXSIZE);
            if (r < 0)
            {
                printf("failed to readlink\n");
                exit(1);
            }
            filename[r] = '\0';
            printf("fp -> fno -> filename: %p -> %d -> %s\n",
                    fp, fno, filename);
        }
        return 0;
    }
    

    Output:

    fp -> fno -> filename: 0x80010294 -> 3 -> /tmp/test.txt
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Getting Filename from file descriptor in C Is there a simple and
Possible Duplicate: Getting a FILE* from a std::fstream Is there a way to obtain
Possible Duplicate: pthread Function from a Class I am getting an error (Can not
Possible Duplicate: Getting the timestamp from last saturday (every week)? If today is Sunday,
Possible Duplicate: Compare dates in java I am getting two dates from server in
Possible Duplicate: getting segmentation fault in a small c program Here's my code: char
Possible Duplicate: Getting the class name from a static method in Java When you
Possible Duplicate: Getting a value from HttpServletRequest.getRemoteUser() in Tomcat without modifying application Short version:
Possible Duplicate: Getting the Specified content into the buffer in c I have a
Possible Duplicate: # in url getting ignored in php 5.2 I have following link

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.