当前位置:  开发笔记 > 编程语言 > 正文

如何确定JavaScript中的OS路径分隔符?

如何解决《如何确定JavaScript中的OS路径分隔符?》经验,为你挑选了3个好方法。

如何在JavaScript中告诉脚本运行的操作系统中使用了什么路径分隔符?



1> 小智..:

使用pathmodule node.js返回特定于平台的文件分隔符.

path.sep  // on *nix evaluates to a string equal to "/"

编辑:根据Sebas的评论,要使用此功能,您需要在js文件的顶部添加:

const path = require('path')


`const path = require('path');`
您可以改进答案[指定如何:`path.sep`](https://nodejs.org/docs/latest/api/path.html#path_path_sep).

2> VVS..:

你可以随时使用/作为路径分隔符,即使在Windows上也是如此.

引自http://bytes.com/forum/thread23123.html:

因此,情况可以简单地概括为:

自DOS 2.0以来所有DOS服务和所有Windows API都接受正斜杠或反斜杠.一直有.

标准命令shell(CMD或COMMAND)都不会接受正斜杠.即使前一篇文章中给出的"cd ./tmp"示例也失败了.


我忽略了这个答案,因为它忽略了问题的完美有效性 - 即有些情况下你确实需要知道所使用的路径分隔符.例如,需要将路径拆分成碎片将使用分隔符.
这不是对所提出问题的完全正确答案。请参阅下面的“正确答案” :)。

3> Decoded..:
正确答案

的,无论您如何传递分隔符,所有操作系统都接受CD ../或CD .. \或CD..。但是读回一条路呢?您怎么知道它说的是“ windows”路径,带有' '\允许。

显而易见的“ Du!” 题

例如,当您依赖安装目录时,会发生什么情况%PROGRAM_FILES% (x86)\Notepad++。请看下面的例子。

var fs = require('fs');                             // file system module
var targetDir = 'C:\Program Files (x86)\Notepad++'; // target installer dir

// read all files in the directory
fs.readdir(targetDir, function(err, files) {

    if(!err){
        for(var i = 0; i < files.length; ++i){
            var currFile = files[i];

            console.log(currFile); 
            // ex output: 'C:\Program Files (x86)\Notepad++\notepad++.exe'

            // attempt to print the parent directory of currFile
            var fileDir = getDir(currFile);

            console.log(fileDir);  
            // output is empty string, ''...what!?
        }
    }
});

function getDir(filePath){
    if(filePath !== '' && filePath != null){

       // this will fail on Windows, and work on Others
       return filePath.substring(0, filePath.lastIndexOf('/') + 1);
    }
}

发生了什么!?

targetDir是被设定为所述指标之间的子串0,和0indexOf('/')-1C:\Program Files\Notepad\Notepad++.exe),导致空字符串。

解决方案...

这包括以下文章中的代码:如何使用Node.js确定当前的操作系统

myGlobals = { isWin: false, isOsX:false, isNix:false };

服务器端检测操作系统。

// this var could likely a global or available to all parts of your app
if(/^win/.test(process.platform))     { myGlobals.isWin=true; }
else if(process.platform === 'darwin'){ myGlobals.isOsX=true; }
else if(process.platform === 'linux') { myGlobals.isNix=true; }

浏览器侧检测操作系统

var appVer = navigator.appVersion;
if      (appVer.indexOf("Win")!=-1)   myGlobals.isWin = true;
else if (appVer.indexOf("Mac")!=-1)   myGlobals.isOsX = true;
else if (appVer.indexOf("X11")!=-1)   myGlobals.isNix = true;
else if (appVer.indexOf("Linux")!=-1) myGlobals.isNix = true;

辅助函数获取分隔符

function getPathSeparator(){
    if(myGlobals.isWin){
        return '\\';
    }
    else if(myGlobals.isOsx  || myGlobals.isNix){
        return '/';
    }

    // default to *nix system.
    return '/';
}

// modifying our getDir method from above...

Helper函数获取父目录(跨平台)

function getDir(filePath){
    if(filePath !== '' && filePath != null){
       // this will fail on Windows, and work on Others
       return filePath.substring(0, filePath.lastIndexOf(getPathSeparator()) + 1);
    }
}

getDir() 必须足够聪明才能知道它在寻找什么。

您甚至可以获得真正的流畅,并检查用户是否通过命令行等输入了路径。

// in the body of getDir() ...
var sepIndex = filePath.lastIndexOf('/');
if(sepIndex == -1){
    sepIndex = filePath.lastIndexOf('\\');
}

// include the trailing separator
return filePath.substring(0, sepIndex+1);

如果要加载模块以完成此简单任务,也可以如上所述使用“ path”模块和path.sep。就个人而言,我认为仅从您已经可用的过程中检查信息就足够了。

var path = require('path');
var fileSep = path.sep;    // returns '\\' on windows, '/' on *nix

多数民众赞成!

推荐阅读
雨天是最美
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有