BuildDTOsFromExcel.FileService.FileSystemService.GetFilePath C# (CSharp) 메소드

GetFilePath() 공개 메소드

public GetFilePath ( string fileName, string directory ) : string
fileName string
directory string
리턴 string
        public string GetFilePath(string fileName, string directory)
        {
            return String.IsNullOrEmpty(directory) ? fileName : Path.Combine(directory, fileName);
        }
FileSystemService