Conner
05/10/2024, 9:44 PMProfile_Pictures
folder inside media folder. I am using MediaService and have currently got the following set-up to save files to umbraco media using the following snippet of code:
c#
IMedia newPic = _mediaService.CreateMedia(file.FileName, Constants.System.Root, Constants.Conventions.MediaTypes.Image, -1);
newPic.SetValue(_mediaFileManager, _mediaUrlGeneratorCollection, _shortStringHelper, _contentTypeBaseServiceProvider,
Constants.Conventions.Media.File, file.FileName, ms);
Any help appreciated thanks.