
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@stdlib/utils-convert-path
Advanced tools
Convert between POSIX and Windows paths.
npm install @stdlib/utils-convert-path
var convertPath = require( '@stdlib/utils-convert-path' );
Converts between POSIX and Windows paths.
var p = convertPath( 'C:\\foo\\bar', 'posix' );
// returns '/c/foo/bar'
The following output path conventions are supported:
C:\\foo\\bar.C:/foo/bar./c/foo/bar.mixed or posix path convention, as forward slashes cannot be used as path separators./[A-Za-z]/ (e.g., /c/), the path is assumed to begin with a volume name.var convertPath = require( '@stdlib/utils-convert-path' );
var p1;
var p2;
p1 = '/c/foo/bar/beep.c';
p2 = convertPath( p1, 'win32' );
// returns 'c:\foo\bar\beep.c'
p1 = '/c/foo/bar/beep.c';
p2 = convertPath( p1, 'mixed' );
// returns 'c:/foo/bar/beep.c'
p1 = '/c/foo/bar/beep.c';
p2 = convertPath( p1, 'posix' );
// returns '/c/foo/bar/beep.c'
p1 = 'C:\\\\foo\\bar\\beep.c';
p2 = convertPath( p1, 'win32' );
// returns 'C:\\foo\bar\beep.c'
p1 = 'C:\\\\foo\\bar\\beep.c';
p2 = convertPath( p1, 'mixed' );
// returns 'C:/foo/bar/beep.c'
p1 = 'C:\\\\foo\\bar\\beep.c';
p2 = convertPath( p1, 'posix' );
// returns '/c/foo/bar/beep.c'
To use the module as a general utility, install the module globally
npm install -g @stdlib/utils-convert-path
Usage: convert-path [options] [<path>] --out=<output>
Options:
-h, --help Print this message.
-V, --version Print the package version.
-o, --out output Output path convention.
$ convert-path /c/foo/bar --out=mixed
c:/foo/bar
To use as a standard stream,
$ echo -n '/c/foo/bar' | convert-path --out=win32
c:\foo\bar
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2021. The Stdlib Authors.
0.0.7 (2021-08-22)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.6">FAQs
Convert between POSIX and Windows paths.
We found that @stdlib/utils-convert-path demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.