public ActionResult <List <FileDto> > ListFolder()
        {
            List <FileDto> response = null;

            try
            {
                response = _iDriveService.ListFolder();
            }
            catch (Exception ex)
            {
                Logger.Error(ex.StackTrace);
            }

            return(Ok(response));
        }