public IActionResult DeleteStudentFIle(string Id, string type) { try { var result = _student.DeleteUploadedFile(Id, type); return(Ok(result)); } catch (Exception ex) { throw ex; } }