コード例 #1
0
ファイル: filesystem.py プロジェクト: aryoxp/trash-cli
    def all() :
	from trashcli.list_mount_points import mount_points
        for mount_point in mount_points():
            yield Volume(Path(mount_point))
コード例 #2
0
ファイル: trash.py プロジェクト: ahua/python
def real_list_mount_points():
    from trashcli.list_mount_points import mount_points
    for mount_point in mount_points():
        yield mount_point
コード例 #3
0
ファイル: trash.py プロジェクト: stefano-k/trash-cli
 def list_volumes(self):
     return mount_points()