Search Unity

Library Folder

Discussion in 'World Building' started by Flegy, Nov 8, 2018.

  1. Flegy

    Flegy

    Joined:
    Jan 5, 2017
    Posts:
    30
    Are have a way to move the library folder on another location? Folder using 40 GB but I am almost out of SSD space :(
     
  2. JoeStrout

    JoeStrout

    Joined:
    Jan 14, 2011
    Posts:
    9,859
    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.
     
  3. 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/"
     
    JoeStrout likes this.