spewn
Programmer
- May 7, 2001
- 1,034
i need to create a folder named fx on my server, automatically, provided it doesn't exist.
i have this code:
i keep getting an error, tho.
any help?
- g
i have this code:
Code:
use Cwd;
$tn = 'fx';
$path = getcwd();
$path =~ s|\|/|g;
$dir = $tn;
$path.=$dir;
mkdir($path);
i keep getting an error, tho.
any help?
- g