14 lines
242 B
PHP
Raw Normal View History

2023-01-30 18:53:20 +08:00
<?php
return function ($type) {
if ($type == 'up') {
DB::init();
$problems = DB::selectAll("select id from problems");
foreach ($problems as $row) {
mkdir(UOJContext::storagePath() . "/problem_resources/{$row['id']}");
2023-01-30 18:53:20 +08:00
}
}
};