# File lib/puppet/type/tidy.rb, line 320 320: def stat(path) 321: begin 322: File.lstat(path) 323: rescue Errno::ENOENT => error 324: info "File does not exist" 325: return nil 326: rescue Errno::EACCES => error 327: warning "Could not stat; permission denied" 328: return nil 329: end 330: end