Re: Permission denied on a directory

2002-06-26 Thread David vd Geer Inhuur tbv IPlib
This is maybe not your only error. Of course you have to store contents of a directory like : sub getfiles { opendir(DIR, $base) or die "can't open $base : $!"; my @files = grep !/^\.\.?$/, readdir(DIR); # Extract the . and .. file closedir(DIR); } # End sub getfiles But if you created the

Re: Permission denied on a directory

2002-06-26 Thread Janek Schleicher
bss96kci wrote at Wed, 26 Jun 2002 08:52:17 +0200: > Hello! > (2) > $path="/data/homewww/../balginst/Bilder"; > open(DIR, ">$path.$fname") or die > binmode(DIR); > > The code writes data in the directory balginst and always writes Bilder and >Bilder.$fname. When I > write $path/$fname, I get an

Permission denied on a directory

2002-06-25 Thread bss96kci
Hello! I have two problems: (1) I'm using Linux and I created directories using the following code: mkdir("/data/homewww/../balginst", 0755) or die The directories are being created. The problem is, when I try to open the directory for writing, I get the message No permission. (2) $path="/data/