Is there a single way of detecting if a directory/file/symlink/etc. entity (more generalized) exists?
I need a single function because I need to check an array of p
Why not define your own function File.exists?(path) or File.symlink?(path) and use that?
File.exists?(path) or File.symlink?(path)