Example #1
0
 public static bool EraseProfileImage(string profileImageId)
 {
     return(FileIOAccess.EraseFile(ProfileImagePath(profileImageId)));
 }
Example #2
0
        public static bool StoreNuntiasContentFile(byte[] fileBytes, long nuntiasId)
        {
            string targetFilePath = FileIOAccess.ContentFileDirectory + nuntiasId;

            return(FileIOAccess.SaveByteArrayToFile(fileBytes, targetFilePath));
        }