This article explains the specific file naming rules for snapshot delta disks when they are created under two conditions:
.vmdk) with the same base nameworkingDir has been explicitly configured in the virtual machine's settings to specify the location where snapshot files should be stored.
When a snapshot is created and a workingDir is configured, the delta disks are always created in the specified workingDir location.
If the virtual disk files have the same base name, a unique sequence number is assigned using the original filename.
Example:
The VM has below configuration.
Harddisk 1: /vmfs/volumes/<Datastore1>/TEST.vmdk
Harddisk 2: /vmfs/volumes/<Datastore2>/TEST.vmdk
workingDir: /vmfs/volumes/<Datastore3>/Snapshot/
When a snapshot is created with the above configuration, two delta disks, TEST-000001.vmdk and TEST-000002.vmdk, are created in the workingDir.
If another snapshot is created in this state, TEST-000003.vmdk and TEST-000004.vmdk will be created.
The respective snapshot chains are as follows:
| Parent Disk | Snapshot1 | Snapshot2 |
| /vmfs/volumes/<Datastore1>/TEST.vmdk | TEST-000001.vmdk |
TEST-000003.vmdk |
| /vmfs/volumes/<Datastore2>/TEST.vmdk | TEST-000002.vmdk |
TEST-000004.vmdk |