Breeze.PocoMetadata.Program.GetFilePath C# (CSharp) 메소드

GetFilePath() 개인적인 정적인 메소드

private static GetFilePath ( ) : string
리턴 string
        private static string GetFilePath()
        {
            var fileName = Options.OutputFile;
            if (string.IsNullOrEmpty(fileName)) return null;

            return string.IsNullOrEmpty(Options.OutputFolder) ?
                Path.GetFullPath(fileName) : Path.Combine(Options.OutputFolder, fileName);
        }