基于操作系统确认路径串类型的方法

时间:2015-08-04 03:24:12

标签: node.js path operating-system

我在不同的操作系统上运行测试,我希望路径格式能够以posix返回。

这是我遇到的错误:

Uncaught AssertionError: expected "..\\foo.txt" to equal "../foo.txt"

如何确认类似posixAffirm("../foo.txt")的路径,并根据窗口或posix渲染出动态正确的路径格式字符串。

1 个答案:

答案 0 :(得分:0)

这是我使用的TypeScript代码:

class StringUtils {
  // SiwachGaurav's version from http://stackoverflow.com/questions/1144783/replacing-all-occurrences-of-a-string-in-javascript
  static replaceAll(str: string, find: string, replace: string): string {
    return str.replace(new RegExp(find.replace(/[-\/\\^$*+?.()|[\]{}]/g,'\\$&'),'g'), replace);
  }

  // Returns file path with OS-native slashes
  static toNativePath(str: string): string {
    var os = ExternalInterfaces.require_os();
    if (os.platform() == "win32")
      // Convert Unix to Windows
      return StringUtils.replaceAll(str, "/", "\\");
    else
      // Convert Windows to Unix
      return StringUtils.replaceAll(str, "\\", "/");
  }

  // Returns file path with POSIX-style slashes
  static toPosixPath(str: string): string {
    // Convert Windows to Unix
    return StringUtils.replaceAll(str, "\\", "/");
  }
}
  • 检查两条路径是否指向相同的

    StringUtils.toPosixPath("..\\foo.txt") == StringUtils.toPosixPath("../foo.txt")

  • 将路径传递给node.js文件I / O

    StringUtils.toNativePath("../foo.txt")

    StringUtils.toNativePath("..\\foo.txt")