Whenever I create a new project in Android Studio
it wants to put it in a generic default folder at a location something similar to (dependent on OS - Ubuntu he
This worked for me Android Studio 4.0.1:
Close Android Studio.
Navigate to C:\Users[Username].AndroidStudio4.0\config\options
Locate recentProjects.xml and open it.
Scroll down the page you will notice: <option name="lastProjectLocation" value="$USER_HOME$/AndroidStudioProjects" />
Change $USER_HOME$/AndroidStudioProjects to your desired location: /home/USER/AndroidStudioProjects/
Reopen Android studio.
At some point I too tried to do this, but the Android Studio doesn’t work quite like Eclipse does.
It's simpler: if you create a project at, say /home/USER/Projects/AndroidStudio/MyApplication
from there on all new projects will default to /home/USER/Projects/AndroidStudio
.
You can also edit ~/.AndroidStudioPreview/config/options/ide.general.xml
(in linux) and change the line that reads <option name="lastProjectLocation" value="$USER_HOME$/AndroidStudioProjects" />
to <option name="lastProjectLocation" value="$USER_HOME$/Projects/AndroidStudio" />
, but be aware that as soon as you create a project anywhere else this will change to that place and all new projects will default to it.
Hope this helps, but the truth is there really isn't much more to it other than what I explained here.
Let me know if you need anything else.
This may be what you want. Settings -> Appearance & Behavior -> System Settings > Project Opening > Default Directory
It worked for me. I tried Android Studio 3.5.