VirtualBox Main API
Public Attributes | List of all members
ISharedFolder Interface Reference

The ISharedFolder interface represents a folder in the host computer's file system accessible from the guest OS running inside a virtual machine using an associated logical name. More...

Inheritance diagram for ISharedFolder:

Public Attributes

readonly attribute wstring name
 Logical name of the shared folder.
 
readonly attribute wstring hostPath
 Full path to the shared folder in the host file system.
 
readonly attribute boolean accessible
 Whether the folder defined by the host path is currently accessible or not.
 
attribute boolean writable
 Whether the folder defined by the host path is writable or not.
 
attribute boolean autoMount
 Whether the folder gets automatically mounted by the guest or not.
 
attribute wstring autoMountPoint
 Desired mount point in the guest for automatically mounting the folder when ISharedFolder::autoMount is set.
 
readonly attribute wstring lastAccessError
 Text message that represents the result of the last accessibility check.
 

Detailed Description

The ISharedFolder interface represents a folder in the host computer's file system accessible from the guest OS running inside a virtual machine using an associated logical name.

There are three types of shared folders:

Logical names of shared folders must be unique within the given scope (global, permanent or transient). However, they do not need to be unique across scopes. In this case, the definition of the shared folder in a more specific scope takes precedence over definitions in all other scopes. The order of precedence is (more specific to more general):

  1. Transient definitions
  2. Permanent definitions
  3. Global definitions

For example, if MyMachine has a shared folder named C_DRIVE (that points to C:\), then creating a transient shared folder named C_DRIVE (that points to C:\\WINDOWS) will change the definition of C_DRIVE in the guest OS so that \\VBOXSVR\C_DRIVE will give access to C:\WINDOWS instead of C:\ on the host PC. Removing the transient shared folder C_DRIVE will restore the previous (permanent) definition of C_DRIVE that points to C:\ if it still exists.

Note that permanent and transient shared folders of different machines are in different name spaces, so they don't overlap and don't need to have unique logical names.

Note
Global shared folders are not implemented in the current version of the product.
Interface ID:
{9622225A-5409-414B-BD16-77DF7BA3451E}

Member Data Documentation

◆ name

readonly attribute wstring ISharedFolder::name

Logical name of the shared folder.

◆ hostPath

readonly attribute wstring ISharedFolder::hostPath

Full path to the shared folder in the host file system.

◆ accessible

readonly attribute boolean ISharedFolder::accessible

Whether the folder defined by the host path is currently accessible or not.

For example, the folder can be inaccessible if it is placed on the network share that is not available by the time this property is read.

◆ writable

attribute boolean ISharedFolder::writable

Whether the folder defined by the host path is writable or not.

◆ autoMount

attribute boolean ISharedFolder::autoMount

Whether the folder gets automatically mounted by the guest or not.

◆ autoMountPoint

attribute wstring ISharedFolder::autoMountPoint

Desired mount point in the guest for automatically mounting the folder when ISharedFolder::autoMount is set.

For Windows and OS/2 guests this should be a drive letter, while other guests it should be a absolute directory. It is possible to combine the two, e.g. "T:/mnt/testrsrc" will be attached to "T:" by windows and OS/2 while the unixy guests will mount it at "/mnt/testrsrc".

When empty the guest will choose a mount point. The guest may do so too should the specified mount point be in use or otherwise unusable.

◆ lastAccessError

readonly attribute wstring ISharedFolder::lastAccessError

Text message that represents the result of the last accessibility check.

Accessibility checks are performed each time the accessible attribute is read. An empty string is returned if the last accessibility check was successful. A non-empty string indicates a failure and should normally describe a reason of the failure (for example, a file read error).