Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: difficult error checking

by Sol-Invictus (Scribe)
on Jan 28, 2004 at 21:48 UTC ( [id://324796]=note: print w/replies, xml ) Need Help??


in reply to difficult error checking

use a hash to filter doubles
#! perl -w use strict; my($file); my(%upload,%seen); %upload=(a=> 'dog', b=> 'cat', c=> 'llama', d => 'dog' ); for (keys %upload){ $file=$upload{$_}; if(defined $seen{$file}) { print "<center><font color=red>Duplicate filename found: $ +file</font></center>\n"; exit; } $seen{$file}=$file; print "<font color=blue><center>Uploaded $file</font></center>"; + }
Instead of the exit call you could just make the filename more unique by tagging on a number (much like your OS does when you make try to make a file with a non unique name)

#! perl -w use strict; my(%upload,%seen); my($counter,$file,$old); %upload=(a=> 'dog.gif', b=> 'cat.gif', c=> 'llama.gif', d => 'dog.gif' ); for (keys %upload){ $file=$upload{$_}; if(defined $seen{$file}) { $old=$file; while (defined $seen{$file}){ $file=$old; $counter++; $file=join('.',$file,$counter); } } $seen{$file}=$file; print "<font color=blue><center>Uploaded ",$file,"</font></cente +r>\n"; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://324796]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 21:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found