The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

FormValidator::Lite::Constraint::File - file constraints

DESCRIPTION

This module provides validation rule for uploaded files.

RULES

FILE_MIME
    $valiator->check(
        'file' => [['FILE_MIME', 'text/plain']],
    );

Check the file content-type.

FILE_SIZE
    $valiator->check(
        'file' => [['FILE_SIZE', 1_000_000, 100]],
    );

Check the file size.First argument is $max, and second is $min. Second argument is optional.