Moving the entire VM doesn't work for me. But I see now that snapshots contain all the differential info since snapshot was taken, so it actually needs to be accessed to be able to access the VM in its current state. So moving the snapshots 'offline' isn't feasible.
Maybe I need to approach this differently. Here's my situation:
I'm running the VM on a laptop with a 240gb SSD; VirtualBox v5.20. I'd like to preserve various prior versions of the VM so that I can go back to them if necessary, which is why I have a number of snapshots. This would be a relatively rare occurrence, so the 'rollback' process need not be as quick as a one-click reversion to a prior snapshot. Because of the limited space on the 240gb SSD for the host OS, apps and data as well as the guest OS, apps and data, and because I don't frequently access prior versions of the VM, I'd like to move these backups to a network share (a desktop computer with a large HDD) or USB backup drive.
Maybe copying the entire VM folder as you suggested is a good way to accomplish this. For example, my current VM has 8 snapshots, and each of these captured system states builds on the system state represented by the preceding snapshot. So the snapshot 'tree' looks like this (grabbed off the internet; my tree would have only 8 snapshots):
So if I want to preserve my existing snapshots and the ability to rollback to those prior states of the VM, but at the same time move this data off my laptop's SSD, maybe I can copy the entire VM folder (/home/ripstop/VirtualBox VMs/myVM1) to a network share or USB backup drive. Then delete all the snapshots from the /myVM1 folder on the laptop, freeing up a lot of space on the SSD. Of course I can take new snapshots, e.g., snapshot #9 (#9 in my series, but snapshot #1 as far as VirtualBox is concerned), etc., as desired.
If I need to get back to the VM as it existed at, say, snapshot #7, I delete the /myVM1 folder from the laptop. Copy the /myVM1 folder from the network share or USB backup to the laptop's /home/ripstop/VirtualBox VMs folder. Then use Machine > Add to add the copied over VM into VirtualBox. The VM will have the same UUID as it originally did and that won't pose a conflict because the 'current' VM was deleted prior to adding the backup VM. Then restore snapshot #7. Do I have all that correct?
And if I wanted to temporarily go back to snapshot #7, and still keep my current VM: Instead of deleting /myVM1 folder, just go into the folder and rename myVM1.vbox to something else, e.g., myVM1.vbox.latest; rename the folder as well, e.g., myVM1latest. Copy the backup /myVM1 folder from network share to the laptop. Use Machine > Add to add this VM. Create a full clone of this VM, which gives it a new UUID. Remove the copied over backup VM, opting to delete all files. Go to the renamed myVM1latest folder and undo the folder and .vbox name changes. Use Machine > Add to add this VM into VirtualBox. Now I have access to both my current VM and the backup VM (with all its snapshots) as the two VMs have different UUIDs. Of course I may have to reactivate Windows (guest OS) in the restored/cloned VM since it has a different UUID than it did at the time it was created, but that should be the only change since it is running on the same host and hardware as it did when it was created. Do I have all this correct?