in reply to file case change
#!/usr/bin/perl -w BEGIN { $|=1; print "Content-type: text/html\n\n"; use CGI::Carp('fatalsToBrowser'); } use strict; my $file; my $path = '/home/costas/test'; opendir (DIR, $path) or die "Can't opendir: $!"; for (readdir DIR) { print "$_<br>"; rename("$path/$_", lc("$path/$_")) or print "Couldn't rename $file +: $!\n"; } closedir DIR;
can anybody see why this is happening? I tried to add the path and it still doesnt work?Couldn't rename : Not a directory .. Couldn't rename : Device or resource busy safdLLP.txT.txt Couldn't rename : Permission denied safdLLPt.txT.txt Couldn't rename : Permission denied
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: file case change
by ChOas (Curate) on Mar 15, 2002 at 12:26 UTC | |
by tachyon (Chancellor) on Mar 15, 2002 at 20:34 UTC | |
|
Re: Re: file case change
by Caillte (Friar) on Mar 15, 2002 at 15:07 UTC |