How can I make Windows programs use files from another drive without changing their expected folder?

0
1
Asked By MellowCedar42 On

I have about 15 GB of Vital VST synth presets stored on a large secondary drive. Vital expects to find them in a specific folder on my nearly full C: drive, and I can't change that location in the program. Is there a way to leave the files on the secondary drive while making Windows and Vital behave as if they're still located in the original C: drive folder?

3 Answers

Answered By NorthVale88 On

For a whole folder, a junction point is another good Windows option. Move the folder to the other drive, remove or rename the original folder, and create a junction at the path Vital expects. The junction redirects folder access without requiring you to change the program’s settings. Be careful to verify the target path before deleting the original folder.

Answered By PixelHarbor31 On

If Vital supports changing its preset location through an INI file, registry setting, or another configuration option, that would be simpler than using a link. The Windows PATH variable usually won’t help if the program is using a hardcoded folder path, so check the application’s documentation or settings first.

Answered By QuartzRider7 On

Use a symbolic link. You can move the actual preset folder to the secondary drive, then create a directory symbolic link at the original C: drive path that points to the new location. Programs will follow the link and generally won’t know the files are stored elsewhere. Windows can create these with the mklink command, usually from an elevated Command Prompt.

MellowCedar42 -

That sounds like exactly what I need. I’ll try setting it up once I’m back at my computer.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.