com.rusanu.DBUtil.SqlCmd.GetFullFilePath C# (CSharp) Méthode

GetFullFilePath() private méthode

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

			return Path.Combine(basePath, filePath);
		}