如何在 JavaScript 中判断运行脚本的操作系统中使用了什么路径分隔符?
5 回答
使用path
module innode.js
返回特定于平台的文件分隔符。
例子
path.sep // on *nix evaluates to a string equal to "/"
编辑:根据下面 Sebas 的评论,要使用它,您需要在 js 文件的顶部添加它:
const path = require('path')
公平地说,您始终可以使用 / 作为路径分隔符,即使在 Windows 上也是如此。
引自http://bytes.com/forum/thread23123.html:
因此,情况可以简单地概括为:
自 DOS 2.0 以来的所有 DOS 服务和所有 Windows API 都接受正斜杠或反斜杠。一直有。
标准命令 shell(CMD 或 COMMAND)都不接受正斜杠。甚至上一篇文章中给出的“cd ./tmp”示例也失败了。
正确答案
是的,无论您如何传入分隔符,所有操作系统都接受 CD ../ 或 CD ..\ 或 CD ..。但是,如何阅读一条回去的路。你怎么知道它是否说是“windows”路径,' '
并且\
允许。
明显的“呃!” 问题
例如,当您依赖于安装目录时会发生什么%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
,并且0
( indexOf('/')
is -1
in C:\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...
获取父目录的辅助函数(跨平台)
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.sep。就个人而言,我认为只需检查您已经可用的流程中的信息就足够了。
var path = require('path');
var fileSep = path.sep; // returns '\\' on windows, '/' on *nix
这就是所有人!
正如这里已经回答的那样,您可以找到操作系统特定的路径分隔符path.sep
来手动构建您的路径。但是您也可以让path.join
工作,这是我在处理路径构造时首选的解决方案:
例子:
const path = require('path');
const directory = 'logs';
const file = 'data.json';
const path1 = `${directory}${path.sep}${file}`;
const path2 = path.join(directory, file);
console.log(path1); // Shows "logs\data.json" on Windows
console.log(path2); // Also shows "logs\data.json" on Windows
只需使用“/”,据我所知,它适用于所有操作系统。