BuildReportTool.Util.AttemptGetAndroidTempStagingArea C# (CSharp) Method

AttemptGetAndroidTempStagingArea() public static method

public static AttemptGetAndroidTempStagingArea ( string projectDataPath, string &path ) : bool
projectDataPath string
path string
return bool
	public static bool AttemptGetAndroidTempStagingArea(string projectDataPath, out string path)
	{
		string tempFolder = GetProjectTempStagingArea(projectDataPath) + "/assets/bin/Data/Managed/";

		//Debug.Log(tempFolder);

		if (Directory.Exists(tempFolder))
		{
			path = tempFolder;
			return true;
		}
		path = "";
		return false;
	}