I’m running ubuntu linux on an office network with mostly windows
machines. I have a shared network folder that I can access with samba
as:
smb://hostname/shared
I’m trying to write a script that will read the contents of that shared
folder, but can’t access it using the above address. I tried to print
the content:
Dir.entries(‘smb://hostname/shared’).each { |e| puts e }
But obviously got a no such directory error. I know this isn’t the way
to go, but I can’t figure out how to read that location.