string fromNativePath( string )
なし
変数名 | 変数型 | 説明 |
---|---|---|
$path | string | 変換するパスです。 |
string $native = "c:\\examples\\scripts\\second\\city"; // Note the double backslashes used in input - in MEL, backslash is // a special escape character and for it to be understood as the // backslash character, two backslashes must be used string $path = fromNativePath( $native ); // Result: c:/examples/scripts/second/city // On Windows