Reputation: 13632
When I create a new Playground with Xcode 10.1 it always defaults to ~/Library/Autosave Information/
Is there any way I can change this?
Upvotes: 9
Views: 345
Reputation: 4485
Workaround with symlink
. Close XCode
-> enter in terminal:
mv ~/Library/Autosave\ Information ~/Library/Autosave\ Information\ Old
ln -s "_desired_folder_path_" ~/Library/Autosave\ Information
Upvotes: 2