fs.realpathSync.native(path[, options])
path<string> | <Buffer> | <URL>options<string> | <Object>encoding<string> 默认值:'utf8'
- 返回:<string> | <Buffer>
同步实路径(3)。
【Synchronous realpath(3).】
仅支持可以转换为 UTF8 字符串的路径。
【Only paths that can be converted to UTF8 strings are supported.】
可选的 options 参数可以是指定编码的字符串,或者是具有 encoding 属性的对象,用于指定返回路径使用的字符编码。如果 encoding 设置为 'buffer',则返回的路径将作为 <Buffer> 对象传递。
【The optional options argument can be a string specifying an encoding, or an
object with an encoding property specifying the character encoding to use for
the path returned. If the encoding is set to 'buffer',
the path returned will be passed as a <Buffer> object.】
在 Linux 上,当 Node.js 与 musl libc 链接时,必须将 procfs 文件系统挂载在 /proc 上,这样该函数才能工作。Glibc 没有这个限制。
【On Linux, when Node.js is linked against musl libc, the procfs file system must
be mounted on /proc in order for this function to work. Glibc does not have
this restriction.】