Are have a way to move the library folder on another location? Folder using 40 GB but I am almost out of SSD space
You have to move the entire project folder.
If you’re on a Mac, you could probably also move just the Library folder, and then make a symbolic link from the project folder to wherever the Library folder really lives. Don’t know if that would work on Windows or not.
In Windows 10:
- “windows” key
- type ‘cmd’
- right click on the command line tool
- run as administrator
- navigate to the Unity folder with the “cd” command
- mklink /J “LinkFolderName” “RealFolderName”
example: mklink /J “Assets” “E:/BigAssDisk/Junkfolder/Working/Unity/AwesomeGame/Assets/”
1 Like