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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T00:00:04+00:00 2026-05-22T00:00:04+00:00

Given two absolute or relative paths, A and B , I want to find

  • 0

Given two absolute or relative paths, A and B, I want to find out whether B is “inside of” the directory A—not just in the directory itself, but potentially in a subdirectory. I’d like to do this without a potentially huge number of fs.readdir calls.

For instance, if A is / and B is /foo/bar/baz, it should be pretty obvious that B is within A; the recursive readdir approach would be extremely inefficient.

One obvious idea is to convert both paths to absolute form, then check if the string form of B‘s absolute path starts with the string form of A‘s. However, there are two problems:

  1. How do you convert the relative paths to absolute paths?
  2. What about symbolic links and such?

I’ll accept answers that make calls to Linux utilities (other than rm -rf… which technically could be used to solve the problem) or third-party Node libraries.

  • 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-22T00:00:05+00:00Added an answer on May 22, 2026 at 12:00 am
    var fs = require('fs');
    
    var a = fs.realpathSync('/home/mak/www'); // /var/www
    var b = fs.realpathSync('/var/www/test/index.html');
    
    var b_in_a = b.indexOf(a) == 0;
    
    var a_is_dir = fs.statSync(a).isDirectory();
    

    fs.*Sync also have asynchronous versions, see fs module.

    fs.realpathSync and fs.statSyncwill throw if the path does not exist.

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

Sidebar

Related Questions

Possible Duplicate: How to construct a relative path in Java from two absolute paths
Given two arrays, A and B, i want to find a number from A
Given two sorted arrays of numbers, we want to find the pair with the
Given two ordered but not necessarily sequential sibling elements, how can I wrap html
Given two sets A and B, what is the common algorithm used to find
Given two sequences of identifier, how to find the smallest operation sequence that will
Given two collections A & B, I want to output: 1. their inner join
Does there exist a method in C# to get the relative path given two
Given two integers a and b , how would I go about calculating the
Given two 3D vectors A and B, I need to derive a rotation matrix

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.