如何使用 perl 将完整路径转换为相对路径?
我在 Perl 程序的两个变量中拥有文件的完整路径和其父目录之一的完整路径。
什么是计算文件相对于父目录的相对路径的安全方法。需要在 windows 和 unix 上工作。
例如
$filePath = "/full/path/to/my/file";
$parentPath = "/full";
$relativePath = ??? # should be "path/to/my/file"
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"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 File::Spec
他们有一个 abs2rel 函数
可在 Windows 和 Linux 上运行
Use File::Spec
They have a abs2rel function
Will work on both Windows and Linux