Hi,
In the following code,
---------------------------
begin
File.delete('a')
File.delete('b') # Or File.delete('a','b','c')
File.delete('c')
rescue
p $!
end
----------------------------
It prints error, if 'a' does'nt exist but 'b' and 'c' exist.
I want delete 'b' and 'c' in any case.
Is there 'resume next' or something?
Park, HeeSob