com.rusanu.DBUtil.SqlCmd.GetFullFilePath C# (CSharp) Method

GetFullFilePath() private method

private GetFullFilePath ( string filePath, string basePath ) : string
filePath string
basePath string
return string
		private string GetFullFilePath(string filePath, string basePath)
		{
			if (Path.IsPathRooted(filePath))
			{
				return filePath;
			}

			return Path.Combine(basePath, filePath);
		}