From: Bob Smyph on
Does anyone know how to open a windows explorer window with Ruby?

What I want to do is to open up the folder in which I just copied some
files.

any ideas would be very helpful.
--
Posted via http://www.ruby-forum.com/.

From: T.J. Sheehy on
[Note: parts of this message were removed to make it a legal post.]

Hi Bob,

Would this work?

system("explorer c:")

Rgds,
T.J.

On Thu, Oct 29, 2009 at 12:06 PM, Bob Smyph
<eric.ramsey(a)cbc-companies.com>wrote:

> Does anyone know how to open a windows explorer window with Ruby?
>
> What I want to do is to open up the folder in which I just copied some
> files.
>
> any ideas would be very helpful.
> --
> Posted via http://www.ruby-forum.com/.
>
>

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

You could also use:
system("start C:\somepath")

On Thu, Oct 29, 2009 at 8:15 AM, T.J. Sheehy <timsheehy(a)gmail.com> wrote:

> Hi Bob,
>
> Would this work?
>
> system("explorer c:")
>
> Rgds,
> T.J.
>
> On Thu, Oct 29, 2009 at 12:06 PM, Bob Smyph
> <eric.ramsey(a)cbc-companies.com>wrote:
>
> > Does anyone know how to open a windows explorer window with Ruby?
> >
> > What I want to do is to open up the folder in which I just copied some
> > files.
> >
> > any ideas would be very helpful.
> > --
> > Posted via http://www.ruby-forum.com/.
> >
> >
>

From: Bob Smyph on
Shawn Anderson wrote:
> You could also use:
> system("start C:\somepath")

Thanks,this works
--
Posted via http://www.ruby-forum.com/.