http://www.perlmonks.org?node_id=797481


in reply to Whats its bad here?

use strict; use warnings;

check result codes and $!

At least:

mkdir "c:\\datos_dms\\$vTemp2" # NOTE: \n is eliminated at the +end of string! or warn "No se ha podido crear el directorio $vTemp2: $!\n";

Replies are listed 'Best First'.
Re^2: Whats its bad here?
by Sombrerero_loco (Beadle) on Sep 25, 2009 at 12:40 UTC
    i only receive as warning:
    Global symbol "$vTemp2" requires explicit package name at C:\directori +o_creator.cgi line 29.
    im still founding anything that can help me.

      That's no warning, that's an error message. Your program doesn't even start, because Perl found an error in it.

        YUp, if i disable use strict it works, and if i print the var $vTemp2 its shows me the correct info.... Its a weird thing.