コード例 #1
0
        private string GetPictureLocalPath(string fileName, PictureType pictureType)
        {
            var imagesDirectoryPath = _webHelper.MapPath("~/Images/" + pictureType + "/");
            var filePath            = Path.Combine(imagesDirectoryPath, fileName);

            return(filePath);
        }