• Hi Guest!

    We have posted a new VaM2 dev log on Patreon, starting a monthly cadence of written progress updates between Beta releases. Highlights include the new Gizmos System, Selection Carousel, and Modes System with Context-Specific Editing. Beta1.2 is 15 of 21 items complete.

    Read the full post on Patreon, or follow progress on the public Trello roadmap.
Keeping files for VAM outside VAM's Install

Guides Keeping files for VAM outside VAM's Install

Did you know you can use a windows feature to store and access files that are kept on a different drive?
It's called a Windows Junction Point.
Want to store larger files, music, video, whatever on a different drive but still be able to access it from within VAM?
This is how you do it.

Vam think the folders are local and the files aren't actually in your install.

1778285975684.png

1778286105468.png

Symlink vs Junction Point in Windows​

Both let you create a "pointer" to another location, but they behave differently under the hood.

Junction Point
  • Links directories only (not files)
  • Works on local volumes only — target must be on the same machine
  • No special privileges required to create (on most systems)
  • Older technology (NTFS reparse point), supported since Windows 2000
  • Target is resolved at the kernel level — most apps are unaware it's a redirect
  • Created with: mklink /J LinkName Target
Symbolic Link (Symlink)
  • Works for both files and directories
  • Can point to network paths and relative paths
  • Requires Administrator or Developer Mode enabled to create
  • More flexible and closer to Unix-style symlinks
  • Created with:
    • mklink LinkName Target (file)
    • mklink /D LinkName Target (directory)
Quick comparison:

FeatureJunctionSymlink
Files
Directories
Network targets
Relative paths
Admin requiredNoYes (or Dev Mode)
Cross-volume

When to use which:
  • Junction — redirecting a local folder (e.g. moving a game's data folder to another drive) without needing admin. Dead simple and reliable.
  • Symlink — you need file-level links, network targets, or relative paths. More powerful but requires elevated rights.
React to this content...

Share this resource

More resources from Dragontales

Back
Top Bottom