From: Wilson Bilkovich Date: 2007-01-15T06:51:00+09:00 Subject: Re: Installing FileUtils Module On 1/14/07, Lovell 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'