我有一个应用程序,它应该向用户显示文件的路径。假设用户输入/home/me/foo/
,应用程序应将其缩短为~/foo
。
有没有办法在Python中做到这一点,以便它与Linux和Windows跨平台工作?
现在确定您要做什么,但将其更改为其他格式非常简单:
newpath = "~"+filepath[9:]
如果您希望它与其他用户名一起使用,
newpath = "~/"+filepath[findfirstindex('foo'):]