当前位置: 首页>>代码示例>>Python>>正文


Python path.rfind方法代码示例

本文整理汇总了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 
开发者ID:thonny,项目名称:thonny,代码行数:23,代码来源:base_file_browser.py

示例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:] 
开发者ID:devmanorg,项目名称:fiasko_bro,代码行数:4,代码来源:url_helpers.py

示例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) 
开发者ID:largelymfs,项目名称:topical_word_embeddings,代码行数:7,代码来源:sources.py


注:本文中的os.path.rfind方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。