當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js path.relative()用法及代碼示例


path.relative()方法用於根據當前工作目錄查找從給定路徑到另一個路徑的相對路徑。如果兩個給定路徑相同,則它將解析為零長度的字符串。

用法:

path.relative( from, to )

參數:該方法接受上述和以下所述的兩個參數:


  • from:該文件路徑將用作基本路徑。
  • to:該文件路徑將用於查找相對路徑。

返回值:它返回具有標準化路徑形式的字符串。

以下示例程序旨在說明Node.js中的path.relative()方法:

例:

// Node.js program to demonstrate the     
// path.relative() method  
     
// Import the path module 
const path = require('path'); 
   
path1 = path.relative("geeks/website", "geeks/index.html"); 
console.log(path1) 
   
path2 = path.relative("users/admin", "admin/files/website"); 
console.log(path2) 
   
// When both the paths are same 
// It returns blank string 
path3 = path.relative("users/admin", "users/admin"); 
console.log(path3)

輸出:

..\index.html
..\..\admin\files\website

參考: https://nodejs.org/api/path.html#path_path_relative_from_to



相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Node.js | path.relative() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。