[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Installing FileUtils Module

Lovell Mcilwain

1/14/2007 9:23:00 PM

Does anyone know how I can install the fileutils module for ruby? or
tell me how I can check to see if I already have it installed be
default?

1 Answer

Wilson Bilkovich

1/14/2007 9:51:00 PM

0

On 1/14/07, Lovell <lovell.mcilwain@gmail.com> wrote:
> Does anyone know how I can install the fileutils module for ruby? or
> tell me how I can check to see if I already have it installed be
> default?
>

FileUtils is part of the Ruby standard library. You just need to
'require' it at the top of your program:
require 'fileutils'