@php-wasm/utilFunctionstoPosixPathtoPosixPath CallabletoPosixPath(nativePath: string): stringConverts a native OS path to a POSIX-style path. Transformations:Backslashes → forward slashesWindows drive letter C:\ → /C/ (colons are invalid in Emscripten VFS paths and cause ENOTDIR errno 28) On POSIX systems this is effectively a no-op.@seehttps://github.com/emscripten-core/emscripten/issues/17829ParametersnativePath: stringReturns string
Converts a native OS path to a POSIX-style path.
Transformations:
C:\→/C/(colons are invalid in Emscripten VFS paths and cause ENOTDIR errno 28)On POSIX systems this is effectively a no-op.
https://github.com/emscripten-core/emscripten/issues/17829