[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Accessing shared windows smb:// folder

sa 125

2/17/2009 7:26:00 AM

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.

Any tips will be great - thanks!
--
Posted via http://www.ruby-....

3 Answers

The Higgs bozo

2/17/2009 8:20:00 AM

0

sa 125 wrote:
>
> 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.

I guess the usual way is to mount the smb filesystem and then use it as
any other directory. Google for +linux +mount +smb.
--
Posted via http://www.ruby-....

list. rb

2/17/2009 11:28:00 AM

0





On Feb 17, 2009, at 2:26 AM, sa 125 <s_ayalon@hotmail.com> wrote:

> 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.
>
> Any tips will be great - thanks!
> --
> Posted via http://www.ruby-....
>


From the windows clients, Dir["\\\\server\\share\\*"]

From the samb server, just use the actual directory that's mounted.

For other nix hosts, I would setup nfs mount points

Louis-Philippe

2/17/2009 3:11:00 PM

0

[Note: parts of this message were removed to make it a legal post.]

there is a (still quite experimental but working) ruby samba client you
could use:
http://sambala.ruby...

it won't answer the .each method as you would like but may still provide the
functionnalities you are looking for.

2009/2/17 List.rb <list.rb@gmail.com>

>
>
>
>
> On Feb 17, 2009, at 2:26 AM, sa 125 <s_ayalon@hotmail.com> wrote:
>
> 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.
>>
>> Any tips will be great - thanks!
>> --
>> Posted via http://www.ruby-....
>>
>>
>
> From the windows clients, Dir["\\\\server\\share\\*"]
>
> From the samb server, just use the actual directory that's mounted.
>
> For other nix hosts, I would setup nfs mount points
>
>