Last active
March 9, 2018 19:13
-
-
Save juampi92/a3c6f6a34f6b4de40454 to your computer and use it in GitHub Desktop.
Store Spotify downloads in a custom folder using Symbolic Links (Win)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:: If you'd like to use a Hard Link, use /J instead of /D | |
:: Remember to run the script with admin access | |
@echo off | |
echo Storage Link: | |
:: Bind the Storage folder | |
mklink /D "%LOCALAPPDATA%\Spotify\Storage" "%~dp0Storage"; | |
echo Data Link: | |
:: Bind the Data folder | |
mklink /D "%LOCALAPPDATA%\Spotify\Data" "%~dp0Data"; | |
pause; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment