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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T06:56:09+00:00 2026-06-08T06:56:09+00:00

How can I check whether a path to a file that doesn’t necessarily exists

  • 0

How can I check whether a path to a file that doesn’t necessarily exists points to a location inside a particular directory? Say I have a method:

bool IsInside(string path, string folder)
{
    //...
}

Then, if I call it like:

IsInside("C:\\Users\\Dude\\Hi", "C:\\Users\\Dude\\Hi\\SubFolder\\SubSubFolder\\tile.txt")

should return true (note the sub folder), but if I call it like:

IsInside("C:\\Users\\Dude\\Hi", "C:\\Users\\Dude\\BadFolder\\SubFolder\\SubSubFolder\\tile.txt")

should return false. The only thing I can think of right now is using string’s StartsWith, but sounds kinda hacky to me. I haven’t found a native .NET method that would check this either.

  • 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-08T06:56:10+00:00Added an answer on June 8, 2026 at 6:56 am

    You could try the string.IndexOf method. If you use the overload with the StringComparison enumeration it should give you the result you need.

    From above link:

    Reports the zero-based index of the first occurrence of one or more characters, or the first occurrence of a string, within this string. The method returns -1 if the character or string is not found in this instance.

    bool IsInside(string folder, string path)
    {
       if (path.IndexOf(folder,StringComparison.OrdinalIgnoreCase) != -1)
            return true;
        else
            return false;    
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a file path (e.g. /src/com/mot ), how can I check whether mot exists,
How can I check whether a particular element is inside an array? I don't
How can I determine whether a certain path points to a hidden file/folder? NSString
I know that I can check whether the linux timestamp in $time is today
Does anyone know of a utility that can check whether a HTTP request/response is
How can i check whether a package like javax.servlet.* exists or not in my
I have a text file. How can I check whether it's empty or not?
How can I use a regEx with grep so that I can check whether
I am trying to determine whether a given path points to a file or
I have a bit of code that is supposed to check whether a directory

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.