1

Does any one know how can I list this remote folders mounted on nautilus?

I tried this but it doesn't seem to work: List samba shares and current users

shared folders

feliupe
  • 11

2 Answers2

1

you can use gio (VFS API) command:

gio mount -l

this command lists all mount type (disks, partitions, etc), if you want only samba shares, then use grep to filter:

gio mount -l | grep smb

gio reference

0

@N0rbert comment answers the question.

What I basically have to do is ls /run/user/$UID/gvfs

Thanks

feliupe
  • 11