Ryan Heitner
Ryan Heitner

Reputation: 13632

Default Directory for Playground on Xcode

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?

enter image description here

Upvotes: 9

Views: 345

Answers (1)

Gralex
Gralex

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

Related Questions