Hi,
Is there a way to list file system's root?
C:\, E:\ ...
Hi,
Is there a way to list file system's root?
C:\, E:\ ...
The easiest way to list it is like this:
For a more complex way of displaying the system root, have a look at the filebrowser script that comes with Python.Code:import appuifw, e32 #appuifw is not really needed here print e32.drive_list() #this is the function itself app_lock=e32.Ao_lock() app_lock.wait()