1

是否有可以规范化字符串文件路径或比较字符串文件路径的 Python 函数?

即类似以下的函数(我编写的):

norm_path = os.normalise("C:\\abc/def/hij\\")
print(norm_path) # c:\abc\def\hij

# I'm looking for a function that converts all "/" to "\\", converts to lowercase
# and removes trailing "\\" or "/" chars so I can compare strings

在我编写自己的函数之前,我想看看是否已经有一个函数可以做到这一点,所以我不会重新发明轮子。

4

1 回答 1

4
>>> import os
>>> print(os.path.normcase(os.path.normpath("C:\\abc/def/hij\\")))
c:\abc\def\hij
于 2013-04-13T04:16:57.123 回答