本文整理汇总了Python中os.path.rfind方法的典型用法代码示例。如果您正苦于以下问题:Python path.rfind方法的具体用法?Python path.rfind怎么用?Python path.rfind使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类os.path
的用法示例。
在下文中一共展示了path.rfind方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: on_remote_file_operation
# 需要导入模块: from os import path [as 别名]
# 或者: from os.path import rfind [as 别名]
def on_remote_file_operation(self, event):
path = event["path"]
exists_in_cache = self.file_exists_in_cache(path)
if (
event["operation"] == "save"
and exists_in_cache
or event["operation"] == "delete"
and not exists_in_cache
):
# No need to refresh
return
if "/" in path:
parent = path[: path.rfind("/")]
if not parent:
parent = "/"
else:
parent = ""
self.refresh_tree([parent])
self.path_to_highlight = path
示例2: get_filename_from_path
# 需要导入模块: from os import path [as 别名]
# 或者: from os.path import rfind [as 别名]
def get_filename_from_path(path):
return path[path.rfind(os.path.sep) + 1:]
示例3: idFromDir
# 需要导入模块: from os import path [as 别名]
# 或者: from os.path import rfind [as 别名]
def idFromDir(self, path):
assert len(path) > len(self.baseDir)
intId = path[1 + path.rfind('#') : ]
pathId = path[len(self.baseDir) + 1 : ]
return (intId, pathId)