Class: Notesgrip::FileSystemObject
- Inherits:
-
Object
- Object
- Notesgrip::FileSystemObject
- Includes:
- Singleton
- Defined in:
- lib/notesgrip/NotesRichTextItem.rb
Instance Method Summary collapse
- #fullpath(filename) ⇒ Object
-
#initialize ⇒ FileSystemObject
constructor
A new instance of FileSystemObject.
Constructor Details
#initialize ⇒ FileSystemObject
Returns a new instance of FileSystemObject.
248 249 250 |
# File 'lib/notesgrip/NotesRichTextItem.rb', line 248 def initialize @body = WIN32OLE.new('Scripting.FileSystemObject') end |
Instance Method Details
#fullpath(filename) ⇒ Object
252 253 254 |
# File 'lib/notesgrip/NotesRichTextItem.rb', line 252 def fullpath(filename) @body.getAbsolutePathName(filename) end |