private existPath()

in packages/build-tools/console-toolkit-plugin-xconsole-fs-route/src/route/RouteMeta.ts [76:83]


  private existPath(path: string, required = false) {
    if (fs.existsSync(path)) {
      return path;
    }
    if (required) {
      throw new Error(`path not exists ${path}`);
    }
  }