如何在 Ubuntu/Linux 中用 Python 获取给定文件路径的 UUID 分区
答案1
我发现这个答案在 bash 中有效:
file='/home/'
blkid -o value $(\df --output=source "$file"|tail -1)|head -1
在 Python 中
import os
def getUUID_from_path(filepath)
return os.system("blkid -o value $(\df --output=source " + filepath + "|tail -1)|head -1")