I have the full path to a file and the full path to one of its parent directories in two variables in Perl program.

What is a safe way to calculate the relative path of the file relative to the parent directory. Needs to work on windows and unix.

e.g.

$filePath = "/full/path/to/my/file";
$parentPath = "/full";
$relativePath = ??? # should be "path/to/my/file"
link|improve this question

59% accept rate
Related stackoverflow.com/questions/6278143/… – daxim Nov 21 '11 at 11:03
feedback

2 Answers

up vote 16 down vote accepted

Use File::Spec

They have a abs2rel function

my $relativePath = File::Spec->abs2rel ($filePath,  $parentPath);

Will work on both Windows and Linux

link|improve this answer
feedback
use Path::Class;
my $full = file( "/full/path/to/my/file" );
my $relative = $full->relative( "/full" );
link|improve this answer
1  
+1 I like Path::Class, it papers over some design warts in File::Spec. – daxim Nov 21 '11 at 11:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.