From: "T. Onoma" Date: 2004-08-28T06:30:36+09:00 Subject: Re: Rake FileList Includes Request On Friday 27 August 2004 04:08 pm, Jim Weirich wrote: > FileList itself generally doesn't care if the file names in its list exist > or not. It must be the software that is using the file list that is > complaining. For example, if you pass a list of files to RDoc, and one of > the files doesn't exist, then it is RDoc that would complain, not > FileList. Thanks, I misjudged the source of that problem. > If you wish, you can filter out non-existant files before they go to other > software with: > > a_file_list.delete_if { |fn| ! File.exist?(fn) } Worked! Thanks, T.