最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how can i robustly detect a relative path in node.js - Stack Overflow

programmeradmin1浏览0评论

Maybe i am making it to hard (and i should just look for a prefix of ./ and ../) but I don't want to re-invent the wheel and write a function to correctly detect relative paths (for all platforms, etc.)

Existing library?

Are there npm packages that do this? Surely this problem has been solved...

Approaches?

Barring an existing library, my intended approach was to use the path module functions to join the possibly relative path to a known prefix, and then see what the result was, with the assumption that path.join('some_base', possiblyRelative) would allow some sort of distinguishing characteristic in a platform safe way.

Any other suggestions? Approaches?

Maybe i am making it to hard (and i should just look for a prefix of ./ and ../) but I don't want to re-invent the wheel and write a function to correctly detect relative paths (for all platforms, etc.)

Existing library?

Are there npm packages that do this? Surely this problem has been solved...

Approaches?

Barring an existing library, my intended approach was to use the path module functions to join the possibly relative path to a known prefix, and then see what the result was, with the assumption that path.join('some_base', possiblyRelative) would allow some sort of distinguishing characteristic in a platform safe way.

Any other suggestions? Approaches?

Share edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Mar 13, 2013 at 1:39 el2iot2el2iot2 6,6167 gold badges40 silver badges52 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 10

UPDATE2: TomDotTom found a more robust answer here: How to check if a path is absolute or relative

Reproduced here (but in the inverse):

var path = require('path');
function isRelative(p) {
  return path.normalize(p + '/') !== path.normalize(path.resolve(p) + '/');
}

For node v0.12 and above, I remend path.isAbsolute instead.

It's a little late but for others searching on the same issue:

since node version 0.12.0 you have the the path.isAbsolute(path) function from the path module. To detect if your path is relative use the negation of it:

i.e:

var path = require('path');
if( ! path.isAbsolute(myPath)) {
    //...
}
function isRelative(str)
{
    //Remove quotes as it can potentially mess up the string
    str=str.replace("\'\"",'');
    return str.substring(0,2)=="./"||str.substring(0,3)=="../"; 
}

In this example we only allow relative strings for the beginning of the string path

发布评论

评论列表(0)

  1. 暂无评论