Skip to content

Instantly share code, notes, and snippets.

@cromica
Last active August 29, 2015 14:07
Show Gist options
  • Save cromica/f55ecf487a408951de95 to your computer and use it in GitHub Desktop.
Save cromica/f55ecf487a408951de95 to your computer and use it in GitHub Desktop.
Sample code to get Studio 2014 project path
public string GetStudioProjectPath(string projectName)
{
var folderPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
var sdlProjectPath = Path.Combine(folderPath,string.Format("Studio 2014\\Projects\\{0}",projectName));
return sdlProjectPath;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment