Re: avoid creating directories in a particular path

2002-09-04 Thread Dharmendra Rai
yeah, but it came after mine was posted on the list. - Get a bigger mailbox -- choose a size that fits your needs.

RE: avoid creating directories in a particular path

2002-09-04 Thread Javeed SAR
Hi, I have written a function ,got it ,thanks for ur help, Regards Javeed -Original Message- From: Sudarshan Raghavan [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 05, 2002 1:30 PM To: Perl beginners Subject: Re: avoid creating directories in a particular path On Wed, 4 Sep

Re: avoid creating directories in a particular path

2002-09-04 Thread Sudarshan Raghavan
On Wed, 4 Sep 2002, Dharmendra Rai wrote: > This will not work as it will also forbid creating new files(according to the >question only sub-DIRS r not allowed) in that directory. > There is no Unix-provided solution for this. One can write a function, > which can be called first in any perl c

Re: avoid creating directories in a particular path

2002-09-03 Thread Dharmendra Rai
This will not work as it will also forbid creating new files(according to the question only sub-DIRS r not allowed) in that directory. There is no Unix-provided solution for this. One can write a function, which can be called first in any perl code (related to some task in that path) to ensure

RE: avoid creating directories in a particular path

2002-09-03 Thread Sudarshan Raghavan
from perl, C etc. The best soln IMO is document this some place where the users can see it, have a cron job that monitors this directory and removes sub-directories if present. > > On Wed, 4 Sep 2002, Javeed SAR wrote: > > > Hi all, > > > > How should i avoid creat

Re: avoid creating directories in a particular path

2002-09-03 Thread Sudarshan Raghavan
On Wed, 4 Sep 2002, Javeed SAR wrote: > Hi all, > > How should i avoid creating directories in a particular path? > For Eg under DSP directory i should not allow any directory to be created.. > Remove the write permission on this directory. -- To unsubscribe, e-mail: [

avoid creating directories in a particular path

2002-09-03 Thread Javeed SAR
Hi all, How should i avoid creating directories in a particular path? For Eg under DSP directory i should not allow any directory to be created.. Regards Javeed