Class: VBox::SharedFolder
- Inherits:
-
Base
- Object
- Base
- VBox::SharedFolder
show all
- Defined in:
- lib/virtualbox/classes/shared_folder.rb
Instance Attribute Summary
Attributes inherited from Base
#ref
Instance Method Summary
collapse
Methods inherited from Base
#_this, #delete!, #ensure_hash, #initialize, #vbox_class
Constructor Details
This class inherits a constructor from VBox::Base
Instance Method Details
#accessible ⇒ Object
14
15
16
|
# File 'lib/virtualbox/classes/shared_folder.rb', line 14
def accessible
VBox::WebService.send_request(:i_shared_folder_get_accessible, _this)
end
|
#auto_mount ⇒ Object
22
23
24
|
# File 'lib/virtualbox/classes/shared_folder.rb', line 22
def auto_mount
VBox::WebService.send_request(:i_shared_folder_get_auto_mount, _this)
end
|
#host_path ⇒ Object
10
11
12
|
# File 'lib/virtualbox/classes/shared_folder.rb', line 10
def host_path
VBox::WebService.send_request(:i_shared_folder_get_host_path, _this)
end
|
#last_access_error ⇒ Object
26
27
28
|
# File 'lib/virtualbox/classes/shared_folder.rb', line 26
def last_access_error
VBox::WebService.send_request(:i_shared_folder_get_last_access_error, _this)
end
|
#name ⇒ Object
6
7
8
|
# File 'lib/virtualbox/classes/shared_folder.rb', line 6
def name
VBox::WebService.send_request(:i_shared_folder_get_name, _this)
end
|
#writable ⇒ Object
18
19
20
|
# File 'lib/virtualbox/classes/shared_folder.rb', line 18
def writable
VBox::WebService.send_request(:i_shared_folder_get_writable, _this)
end
|