class Excelgrip::FileSystemObject

Public Class Methods

new() click to toggle source
# File lib/excelgrip/GripWrapper.rb, line 46
def initialize
  @body =  WIN32OLE.new('Scripting.FileSystemObject')
end

Public Instance Methods

fullpath(filename) click to toggle source
# File lib/excelgrip/GripWrapper.rb, line 50
def fullpath(filename)
  @body.getAbsolutePathName(filename)
end