BuildReportTool.Util.AttemptGetWebTempStagingArea C# (CSharp) Метод

AttemptGetWebTempStagingArea() публичный статический Метод

public static AttemptGetWebTempStagingArea ( string projectDataPath, string &path ) : bool
projectDataPath string
path string
Результат bool
	public static bool AttemptGetWebTempStagingArea(string projectDataPath, out string path)
	{
		string tempFolder = GetProjectTempStagingArea(projectDataPath) + "/Data/Managed/";

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