如何获取符号链接文件的绝对路径? [英] how to get the Absolute Path for symlink file?

查看:66
本文介绍了如何获取符号链接文件的绝对路径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

# test-> a.pl

# test-> a.pl

my $file = '/home/joe/test';
if ( -f $file && -l $file )  {
    print readlink( $file ) ;
}

如何获取符号链接文件的绝对路径?

how to get the Absolute Path for symlink file ?

推荐答案

Cwd 提供了这样的功能来自 abs_path.

Cwd provides such functionality by abs_path.

#!/usr/bin/perl -w

use Cwd 'abs_path';

my $file='/home/joe/test';
if( -f $file && -l $file ) {
    print abs_path($file);
}

这篇关于如何获取符号链接文件的绝对路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆