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" ステータス (unversionned、normal、...) を取得しようとしました。
しかし、ドキュメントで述べたように、pysvn は、ディレクトリ自体ではなく、ディレクトリ内のファイル ステータスを含む配列を返します。
この情報を取得する他の方法はありますか?
良い1日を。ウイユ
すいません見つけました。
Client.status(dirname) は配列を返します。この配列の最後の要素はディレクトリです。
myclient.status(dirname)[-1].text_statusそのため、ディレクトリステータスを返します。
myclient.status(dirname)[-1].text_status
良い1日を。ウイユ。