Method: FileUtils2::Entry_#lstat

Defined in:
lib/fileutils2.rb

#lstatObject



1388
1389
1390
1391
1392
1393
1394
# File 'lib/fileutils2.rb', line 1388

def lstat
  if dereference?
    @lstat ||= File.stat(path())
  else
    @lstat ||= File.lstat(path())
  end
end