method
    
    platform_support
  platform_support()
  public
  
    Hide source    
    
      
  
# File lib/fileutils.rb, line 1410 def platform_support return yield unless fu_windows? first_time_p = true begin yield rescue Errno::ENOENT raise rescue => err if first_time_p first_time_p = false begin File.chmod 0700, path() # Windows does not have symlink retry rescue SystemCallError end end raise err end end

  
  