From: Mmcolli00 Mom Date: 2008-12-19T00:20:44+09:00 Subject: mtime - search directory for modified time I am trying to extract an exact filename so that I can use mtime method. It appears to be needing an exact filename and maybe I am getting other artifacts when iterating through this directory. Would you know how to fix? Please help me with this. Thanks. MC require "fileutils" require 'find' require 'ftools' Dir.entries("C:/New").each do |filename| if File.extname(filename) == ".txt" then filename.to_s puts File.mtime(filename) #<--gets error 'No such file or directory' ENOENT puts File.mtime("C:/New/2343434.txt")#<--works by outputting modified time end end -- Posted via http://www.ruby-forum.com/.