public ActionResult <FileDto> CopyFileOrigin(string fileId, string folderId)
        {
            FileDto response = null;

            try
            {
                if (!string.IsNullOrEmpty(fileId) && !string.IsNullOrEmpty(folderId))
                {
                    response = _iDriveService.CopyFileOrigin(fileId, folderId);
                }
            }
            catch (Exception e)
            {
                Logger.Error(e.StackTrace);
            }
            return(Ok(response));
        }