Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how can the directory of a usb drive connected to a system be obtained?

I need to obtain the path to the directory created for a usb drive(I think it's something like /media/user/xxxxx) for a simple usb mass storage device browser that I am making. Can anyone suggest the best/simplest way to do this? I am using an Ubuntu 13.10 machine and will be using it on a linux device.

Need this in python.

like image 528
Flame of udun Avatar asked Mar 24 '14 16:03

Flame of udun


People also ask

How do I find my USB drive on my computer?

Insert the flash drive into a USB port on your computer. You should find a USB port on the front, back, or side of your computer (the location may vary depending on whether you have a desktop or a laptop). Depending on how your computer is set up, a dialog box may appear. If it does, select Open folder to view files.

What is a directory on a USB?

The USB drive contains directories for backup images, configuration files, feature keys, certificates, and diagnostics information for your Firebox.

How do I access my USB root directory?

It is the first location you encounter when you access your USB memory stick or external drive. There isn't any folder or path. Just access your device and you're on the root directory. On Windows, for example, if your USB drive is on “E:/”, that would be your root directory.


2 Answers

This should get you started:

#!/usr/bin/env python

import os
from glob import glob
from subprocess import check_output, CalledProcessError

def get_usb_devices():
    sdb_devices = map(os.path.realpath, glob('/sys/block/sd*'))
    usb_devices = (dev for dev in sdb_devices
        if 'usb' in dev.split('/')[5])
    return dict((os.path.basename(dev), dev) for dev in usb_devices)

def get_mount_points(devices=None):
    devices = devices or get_usb_devices() # if devices are None: get_usb_devices
    output = check_output(['mount']).splitlines()
    is_usb = lambda path: any(dev in path for dev in devices)
    usb_info = (line for line in output if is_usb(line.split()[0]))
    return [(info.split()[0], info.split()[2]) for info in usb_info]

if __name__ == '__main__':
    print get_mount_points()

How does it work?

First, we parse /sys/block for sd* files (courtesy of https://stackoverflow.com/a/3881817/1388392) to filter out usb devices. Later you call mount and parse output for lines only for those devices.

Of course they might be some edge cases, when this won't work, portability issues etc. Or better ways to do it. But for more information you should rather seek help on SuperUser or ServerFault, with more experienced linux hackers.

like image 156
m.wasowski Avatar answered Nov 12 '22 01:11

m.wasowski


I had to modify @m.wasowski 's code to make it work on Python3.5.4 as follows.

def get_mount_points(devices=None):
    devices = devices or get_usb_devices()  # if devices are None: get_usb_devices
    output = check_output(['mount']).splitlines()
    output = [tmp.decode('UTF-8') for tmp in output]

    def is_usb(path):
        return any(dev in path for dev in devices)
    usb_info = (line for line in output if is_usb(line.split()[0]))
    return [(info.split()[0], info.split()[2]) for info in usb_info]
like image 32
user3342981 Avatar answered Nov 12 '22 01:11

user3342981