abs_path("$FindBin::Bin/../../..");
返回
//jg/workspace/ns/v3/LINUX/full
有没有一种简单的方法来获得其他斜线的路径?我需要
\\jg\workspace\ns\v3\LINUX\full
答案 0 :(得分:2)
File :: Spec可以为你规范化路径。
use File::Spec::Functions qw( canonpath );
$path = canonpath($path);