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