ActivEarth.Account.EditProfile.userImageDirPath C# (CSharp) 메소드

userImageDirPath() 개인적인 메소드

Like imageDirPath except will give the exact directory the users image is in.
private userImageDirPath ( string dirName, int userID ) : string
dirName string Name of the directory. Typically you can just use the name of an image size.
userID int The ID of the user.
리턴 string
        private string userImageDirPath(string dirName, int userID)
        {
            int userDir = (userID / 1000);
            return String.Format("{0}\\{1}\\", imageDirPath(dirName), userDir);
        }