本文整理汇总了Python中service.seafserv_threaded_rpc.get_dir_id_by_path函数的典型用法代码示例。如果您正苦于以下问题:Python get_dir_id_by_path函数的具体用法?Python get_dir_id_by_path怎么用?Python get_dir_id_by_path使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了get_dir_id_by_path函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_dir_id_by_path
def get_dir_id_by_path(self, repo_id, path):
return seafserv_threaded_rpc.get_dir_id_by_path(repo_id, path)
示例2: list_dir_by_path
def list_dir_by_path(self, repo_id, path, offset=-1, limit=-1):
dir_id = seafserv_threaded_rpc.get_dir_id_by_path(repo_id, path)
return seafserv_threaded_rpc.list_dir(repo_id, dir_id, offset, limit)
示例3: list_dir_by_path
def list_dir_by_path(self, repo_id, path):
dir_id = seafserv_threaded_rpc.get_dir_id_by_path(repo_id, path)
return seafserv_threaded_rpc.list_dir(dir_id)