ACAT.Lib.Core.Utility.FileUtils.GetSkinsImagePath C# (CSharp) 메소드

GetSkinsImagePath() 공개 정적인 메소드

For the specified imaagefile, gets the fully qualified path to it for the spcified skin
public static GetSkinsImagePath ( string skin, string imageFile ) : String
skin string skin name
imageFile string image file name
리턴 String
        public static String GetSkinsImagePath(string skin, string imageFile)
        {
            var fullPath = Path.Combine(GetUserSkinsDir(), skin, imageFile);
            return File.Exists(fullPath) ? fullPath : Path.Combine(GetSkinsDir(), skin, imageFile);
        }