Created
December 22, 2017 08:06
-
-
Save dmonllao/d1db52b11c9ca00e76ab8ddcb95c6c93 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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