本文介绍了从文件路径获取文件目录路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Bash中,如果VAR="/home/me/mydir/file.c"
,我如何获取"/home/me/mydir"
?
In Bash, if VAR="/home/me/mydir/file.c"
, how do I get "/home/me/mydir"
?
推荐答案
dirname
和basename
是您正在寻找的提取路径分量的工具:
dirname
and basename
are the tools you're looking for for extracting path components:
$ export VAR='/home/pax/file.c'
$ echo "$(dirname "${VAR}")" ; echo "$(basename "${VAR}")"
/home/pax
file.c
它们不是内部Bash命令,但它们是POSIX标准的一部分-请参见 dirname
和 basename
.因此,它们可能在大多数能够运行bash
的平台上可用,或者可以在大多数平台上获得.
They're not internal Bash commands but they're part of the POSIX standard - see dirname
and basename
. Hence, they're probably available on, or can be obtained for, most platforms that are capable of running bash
.
这篇关于从文件路径获取文件目录路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!