// Gets the image(s) from the given path
 public ActionResult GetImage(FileManagerDirectoryContent args)
 {
     return(operation.GetImage(args.Path, args.Id, false, null, null));
 }
 public IActionResult AmazonS3GetImage(FileManagerDirectoryContent args)
 {
     return(operation.GetImage(args.Path, args.Id, false, null, args.Data));
 }