Skip to content

Instantly share code, notes, and snippets.

@dmonllao
Created December 22, 2017 08:06
Show Gist options
  • Save dmonllao/d1db52b11c9ca00e76ab8ddcb95c6c93 to your computer and use it in GitHub Desktop.
Save dmonllao/d1db52b11c9ca00e76ab8ddcb95c6c93 to your computer and use it in GitHub Desktop.
<?php
define('CLI_SCRIPT', true);
require_once(__DIR__ . '/config.php');
$latest = $DB->get_records_select('files', "component = 'analytics' AND filename = 'evaluation.csv' AND filepath LIKE '/timesplitting/%'", array(), 'timecreated DESC', '*', 0, 1);
$id = key($latest);
$fs = get_file_storage();
$f = $fs->get_file_by_id($id);
$f->copy_content_to('/home/davidm/Desktop/latest-generated.csv');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment