Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用 pysvn Client.status(dirname) 函数获取特定目录的目录“svn”状态(未版本化,正常,...)。
但正如文档中所说,pysvn 返回一个包含目录中文件状态的数组,而不是目录本身。
有没有其他方法可以获取这些信息?
祝你今天过得愉快。欧耶
抱歉找到了。
Client.status(dirname) 返回一个数组。该数组的最后一个元素是目录。
所以使用myclient.status(dirname)[-1].text_status返回目录状态。
myclient.status(dirname)[-1].text_status
祝你今天过得愉快。欧耶。