在Perl中 - 如何规范化Windows的路径

时间:2013-08-13 09:58:38

标签: regex perl

我是Perl的新手,但我需要知道如何让变量包含针对windows规范化的特定路径。

谢谢, MaMd0u7

1 个答案:

答案 0 :(得分:2)

http://perldoc.perl.org/File/Spec.html

use File::Spec::Win32
my $dir = File::Spec::Win32->catfile('directory','tree','file.html');
print $dir;

output: directory\tree\file.html

任何用途?