From: Phrogz Date: 2006-10-23T14:25:11+09:00 Subject: Re: find out the time used for searching a file Li Chen wrote: > When I run a script to search some files in a folder and/or its children > folders I want know how long it takes when the search is done. Is there > any such method available in Ruby ? a) Research the Benchmark library b) start_time = Time.new # do stuff here end_time = Time.new puts( "It took #{end_time - start_time} seconds" )