Typescrypt和Angular:File.separator analogue

时间:2018-02-06 11:53:22

标签: angular typescript

我有一个字符串,可以用" /"或" \"在内部,取决于操作系统(Windows或Linux)默认文件分隔符。

在java中我有File.separator根据机器自动检索正确的字符。

我怎么能在打字稿中做到这一点?

1 个答案:

答案 0 :(得分:0)

您可以使用Path.parse

path.parse('/home/user/dir/file.txt');
path.parse('C:\\path\\dir\\file.txt');

**编辑:用于加入路径:*​​

path.join('foo/', 'bar', 'baz' );
path.join('C:\\foo', 'bar');