Exemplo n.º 1
0
def disk_partitions(all=False):
    """Return mounted partitions as a list of namedtuples including
    device, mount point and filesystem type.

    If "all" parameter is False return physical devices only and ignore
    all others.
    """
    return _psplatform.disk_partitions(all)
Exemplo n.º 2
0
def disk_partitions(all=False):
    """Return mounted partitions as a list of namedtuples including
    device, mount point and filesystem type.

    If "all" parameter is False return physical devices only and ignore
    all others.
    """
    return _psplatform.disk_partitions(all)
Exemplo n.º 3
0
def disk_partitions(all=False):
    """Return mounted partitions as a list of namedtuples including
    device, mount point, filesystem type and mount options (a raw
    string separated by commas which may vary depending on the platform).

    If "all" parameter is False return physical devices only and ignore
    all others.
    """
    return _psplatform.disk_partitions(all)
Exemplo n.º 4
0
def disk_partitions(all=False):
    """Return mounted partitions as a list of namedtuples including
    device, mount point, filesystem type and mount options (a raw
    string separated by commas which may vary depending on the platform).

    If "all" parameter is False return physical devices only and ignore
    all others.
    """
    return _psplatform.disk_partitions(all)