Jack Raats wrote:
>Hi,
>
>I wan to scan all attachements.
>At this moment I'm using
>
>file_list_1 =
>(?i)\.(gig|jpg|jpeg|png|pnm|dvi|eps|ps|pdf|pcx|bmp|mp3|mp2|wav|au|ram|ra|av|
>file_list_1 += dot|xlw|xyz|dot|zyx|xlw|com|exe|bat|scr|pif|cmd|
>file_list_1 += zip|tar|rar)$
>
>I tried
>file_list_1 = (?i).(*)$
>which didn't work. What is wrong with this file_list?
>
>I'm also looking for a good (beginners) manual which explains the used
>syntax!
>
>Thanks
>Jack
>
>
>
hi, use
file_list_1 = (?i).*
for scanning all files
regards,
b.vanburk