class File

Public Class Methods

remove(path) click to toggle source
# File lib/file.rb, line 5
def self.remove(path)
  FileUtils.rm(path) if File.exist?(path)
end