有没有办法只为文件获取路径? 例如,
/u/m_n/hi.txt
如果我使用文件尾,它会给我
hi.txt
我只想要
/u/m_n/
我尝试使用文件rootname,将它输出到'。',就像这样
/u/m_n/hi
是的,我认为它的档案名称,得到了它。 对不起垃圾邮件。
答案 0 :(得分:1)
你使用:
file dirname "/u/m_n/hi.txt"
它返回:
/u/m_n
正如你问的那样。
如果您想要标题中所写的文件扩展名,请使用文件扩展名
file extension "/u/m_n/hi.txt"
它将返回:
.txt