Moving projects from "Samples" to "My Projects"

I created a game from an example and I want to move it to my projects. Is this possible?

I’m new to Unreal Engine 4 and couldn’t find anything through the GUI and I’m using it on Linux via building the source code. How I move my project created from samples out of the Samples into the My Project area is by editing the [name of project].uproject file located in your project folder on the disk and changing the Category from “Samples” to “”. See example below for clarification. I hope this helps.

Name of project file: MyFirstRealProject.uproject
---- Before changing it -----
{
“FileVersion”: 3,
“EngineAssociation”: “4.18”,
“Category”: “Samples”,
“Description”: “”,
“TargetPlatforms”: [
“MacNoEditor”,
“WindowsNoEditor”
],
“EpicSampleNameHash”: “2413367623”
}

---- After changing it ---------
{
“FileVersion”: 3,
“EngineAssociation”: “4.18”,
“Category”: “”,
“Description”: “”,
“TargetPlatforms”: [
“MacNoEditor”,
“WindowsNoEditor”
],
“EpicSampleNameHash”: “2413367623”
}