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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T19:01:08+00:00 2026-05-14T19:01:08+00:00

i have filename according to this file name. i need to find file’s path.

  • 0

i have filename according to this file name. i need to find file’s path.
how to find file’s path according to filename? i need to find file’s path according to file name sample code:

string path=      System.IO.Directory.GetDirectories(@"c:\", "kategori",System.IO.SearchOption.AllDirectories).First();

But i need :

string path=      System.IO.Directory.GetDirectories(@"anyFolder", "kategori",System.IO.SearchOption.AllDirectories).First();

i need below


Main()
{
string path = PathFinder("Afilename")
}

output: C:\myFiles\AfileName

string PathFinder(string fileName)
{
..................
.................
........
.......
....
..
.
}
  • 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-14T19:01:09+00:00Added an answer on May 14, 2026 at 7:01 pm

    Probably a function like this could work for you:

    public static String SearchFileRecursive(String baseFolderPath, String fileName)
        {
            // Returns, if found, the full path of the file; otherwise returns null.
            var response = Path.Combine(baseFolderPath, fileName);
            if (File.Exists(response))
            {
                return response;
            }
    
            // Recursion.
            var directories = Directory.GetDirectories(baseFolderPath);
            for (var i = 0; i < directories.Length; i++)
            {
                response = SearchFileRecursive(directories[i], fileName);
                if (response != null) return response;
            }
    
            // { file was not found }
    
            return null;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an image file name that consists of four parts: $Directory (the directory
I have a filename 10.10.10.17_super-micro-100-13.txt from which I need to extract everything between _
I have a unicode filename that I would like to open. The following code:
I have a path + filename that contains [] several times. What i want
I have a string literal as follows: string filename = @C:\myfolder\myfile.jpg; When I use
I have a code as such that reads in an xml file into a
I have a large number of files in a directory with this type of
I have the following code, so far, I want to check if a file
I have File Like Sample.bak and when I compress it to be Sample.zip I
I have made a method to CompressImageSize according to Image quality. The code for

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.