Class: VBox::Directory
Direct Known Subclasses
Instance Attribute Summary collapse
-
#ref ⇒ Object
readonly
Returns the value of attribute ref.
Instance Method Summary collapse
-
#close ⇒ Object
Methods.
-
#directory_name ⇒ Object
Attributes.
- #filter ⇒ Object
- #read ⇒ Object
Methods inherited from Base
#_this, #delete!, #ensure_hash, #initialize, #vbox_class
Constructor Details
This class inherits a constructor from VBox::Base
Instance Attribute Details
#ref ⇒ Object (readonly)
Returns the value of attribute ref.
4 5 6 |
# File 'lib/virtualbox/classes/directory.rb', line 4 def ref @ref end |
Instance Method Details
#close ⇒ Object
Methods
18 19 20 |
# File 'lib/virtualbox/classes/directory.rb', line 18 def close VBox::WebService.send_request(:i_directory_close, _this) end |
#directory_name ⇒ Object
Attributes
8 9 10 |
# File 'lib/virtualbox/classes/directory.rb', line 8 def directory_name VBox::WebService.send_request(:i_directory_get_directory_name, _this) end |
#filter ⇒ Object
12 13 14 |
# File 'lib/virtualbox/classes/directory.rb', line 12 def filter VBox::WebService.send_request(:i_directory_get_filter, _this) end |
#read ⇒ Object
22 23 24 25 |
# File 'lib/virtualbox/classes/directory.rb', line 22 def read entry = VBox::WebService.send_request(:i_directory_read, _this) VBox::FsObjInfo.new(entry) end |