module FileSystemObject
Public Class Methods
instance()
click to toggle source
# File lib/acrobat/app.rb, line 9 def FileSystemObject.instance unless @instance @instance = WIN32OLE.new('Scripting.FileSystemObject') end return @instance end
windows_path(path)
click to toggle source
# File lib/acrobat/app.rb, line 16 def FileSystemObject.windows_path(path) FileSystemObject.instance.GetAbsolutePathname(path.to_s) end