com.rusanu.DBUtil.SqlCmd.GetFullFilePath C# (CSharp) 메소드

GetFullFilePath() 개인적인 메소드

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

			return Path.Combine(basePath, filePath);
		}