VMware ESXi and vSphere Cluster Management
Access Shared Folders in VMware Workstation Player Guest Systems
Learn where VMware Workstation Player shared folders appear in Windows and Linux guests, how to open them, and how to troubleshoot access safely.
A VMware shared folder lets the guest operating system—the operating system running inside a virtual machine—access a directory on the host operating system, the physical computer running VMware Workstation Player. This is a convenient way to exchange files without attaching a separate disk or configuring a conventional network share.
Shared folders use VMware's host-guest file-sharing mechanism, commonly called HGFS. The feature is different from a normal network share, drag-and-drop, copy and paste, USB passthrough, or manually copied files. A shared folder is presented through VMware guest-integration software and must already be enabled and configured for the target virtual machine.
Requirements Before Accessing a Shared Folder
- The virtual machine must be powered on.
- VMware Tools must be installed and running in a Windows guest.
- A Linux guest needs VMware Tools or the appropriate open-vm-tools package and services.
- The host directory configured for sharing must still exist and be available.
- The shared-folder feature must be enabled for the virtual machine, either persistently or for the current session, depending on the configuration.
- The share must have a configured guest-visible name. This name is not necessarily the same as the folder's path on the host.
Review the virtual machine's configuration using the equivalent of Virtual machine settings > Options > Shared Folders. Enable the feature, add a host directory, assign a share name, and choose read-only or read-write access where available.
Shared Folder Locations by Guest Operating System
Access a Shared Folder from a Windows Guest
Browse with File Explorer
- Start the virtual machine and sign in to Windows.
- Open File Explorer.
- Select Network in the navigation pane. Network discovery may need to be enabled before network computers are displayed.
- Locate the VMware-provided computer entry named
vmware-host. - Open
vmware-host, then open Shared Folders. - Open the directory whose name matches the share name configured in the virtual machine settings.
The usual Windows path pattern is:
\\vmware-host\Shared Folders\<share-name>
Replace <share-name> with the configured guest-visible name. Do not replace it with the host's full filesystem path.
Open the Share Directly with a UNC Path
A UNC path is a Windows network path that begins with two backslashes. Enter the following form in the File Explorer address bar:
\\vmware-host\Shared Folders\<share-name>
Direct access is useful when vmware-host does not appear immediately under Network. It also avoids relying on network-browsing visibility.
Map the Share to a Drive Letter
A mapped network drive assigns a drive letter to a network or shared-folder path. In File Explorer, use the option to map a network drive, choose an unused letter, and enter the UNC path for the share. For example, map \\vmware-host\Shared Folders\Documents to drive V:.
A mapped drive provides a convenient shortcut for repeated access. If the virtual machine is not running or the shared-folder integration is unavailable, the mapped drive may appear disconnected until the feature becomes available again.
Access a Shared Folder from a Linux Guest
The customary Linux mount point for VMware shared folders is /mnt/hgfs. Each enabled share normally appears as a directory below that location.
cd /mnt/hgfs
ls
To enter a particular share, use its configured name:
cd /mnt/hgfs/<share-name>
ls
For example, if the share is named Documents, its typical path is /mnt/hgfs/Documents. The exact final directory name depends on the share name configured for the virtual machine.
Check Whether HGFS Is Mounted
If /mnt/hgfs exists but contains no share directories, check whether the HGFS filesystem is mounted:
mount | grep hgfs
On a systemd-based Linux guest, check the VMware Tools daemon:
systemctl status vmtoolsd
The command may require administrator privileges, depending on the distribution and service configuration. If the daemon is missing or inactive, install or repair the appropriate VMware Tools or open-vm-tools package, then restart the service or guest as appropriate.
Host Paths, Share Names, and Guest Paths
Three names can be involved:
- Host filesystem path: The actual directory on the physical computer.
- Share name: The label assigned in VMware settings and exposed to the guest.
- Guest path: The location used inside Windows or Linux to open the share.
Windows uses this pattern:
\\vmware-host\Shared Folders\<share-name>
Linux normally uses this pattern:
/mnt/hgfs/<share-name>
The share name may differ from the final directory name on the host. Always check the virtual machine's Shared Folders configuration when a path does not work.
Permissions and Access Limitations
Guest access is limited by both VMware's shared-folder settings and permissions on the host directory. A share configured as read-only allows the guest to view or read files but prevents guest modifications. A read-write share still cannot bypass host-side permissions or filesystem restrictions.
- Check whether the share is configured as read-only or read-write.
- Confirm that the host user and host filesystem permit the requested operation.
- In Linux, verify that the guest user has suitable permissions. Some VMware Tools implementations use a particular group or mount- permission arrangement.
- Remember that an application may impose its own restrictions even when the filesystem permits access.
Safe File-Use Practices
Do not open the same shared file in host and guest applications at the same time. Concurrent writes can overwrite changes, create conflicting versions, or damage data when one or both applications do not use interoperable file locking.
- Close a document, spreadsheet, database, or project file in the host before opening it in the guest.
- Save and close the file in the guest before reopening it on the host.
- Keep backups of important files.
- For collaborative or frequently changing work, use source control or a synchronization workflow instead of relying on simultaneous editing through a shared folder.
Basic Verification and Diagnosis
When a share cannot be opened, check the configuration in order:
- Verify that the host directory exists.
- If the directory is on removable or network storage, confirm that the storage is connected and available to the host.
- Confirm that Shared Folders is enabled for this virtual machine.
- Confirm that at least one host directory and guest-visible share name are configured.
- Confirm that VMware Tools or
open-vm-toolsis installed and its services are active. - Restart the guest or the relevant VMware Tools service after configuration changes when necessary.
Common Shared Folder Access Problems
Exam-Relevant Notes
- Windows: Look for
vmware-host, thenShared Folders, or use the UNC path. - Linux: Look below
/mnt/hgfsfor directories named after configured shares. - VMware Tools or
open-vm-toolsis required for guest integration. - The host directory path and the guest-visible share name are different concepts.
- Read-only configuration and host permissions can prevent writes even when the share is visible.
- A shared folder is not the same as a conventional network share, drag-and-drop, USB passthrough, or a copied file.
For a concise workflow, see accessing a shared folder and apply the Windows or Linux path pattern for your guest.