summaryrefslogtreecommitdiff
path: root/cron/clean_database.pl
blob: f5535153139aa3b745b1ac10249c44b216d009c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use strict;
use Cwd 'abs_path';
use File::Basename;
use local::db;
use config;

for my $dl (local::db::download->retrieve_all)
{
	$dl->delete if not -d $config::config{files_dir}.'/'.$dl->category->name.'/'.$dl->download_id;
}