RE: Making directories

2011-10-26 Thread Barry Brevik
> suggests that you have an issue with file permissions > rather than directory permissions. That is the files You are probably right. I'm going to try to debug that. > The answer probably depends on how you are copying files. For > example, according to the doco, File::Copy::cp preserves the

RE: Making directories

2011-10-26 Thread Brian Raven
> -Original Message- > From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl- > win32-users-boun...@listserv.activestate.com] On Behalf Of Barry Brevik > Sent: 24 October 2011 23:53 > To: perl-win32-users@listserv.ActiveState.com > Subject: Making directo

RE: Making directories

2011-10-25 Thread Tobias Hoellrich
[mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of Barry Brevik Sent: Tuesday, October 25, 2011 11:47 AM To: Sisyphus; perl-win32-users@listserv.ActiveState.com Subject: RE: Making directories Thank you for that idea. I would rather not shell out, but I can not do better

RE: Making directories

2011-10-25 Thread Barry Brevik
Of Justin Allegakoen Sent: Monday, October 24, 2011 10:14 PM To: perl-win32-users@listserv.activestate.com Subject: Re: Making directories On 25 October 2011 13:08, Kanhaiya Prasad wrote: Hi Here i

RE: Making directories

2011-10-25 Thread Barry Brevik
t; Sent: Monday, October 24, 2011 6:00 PM > To: Barry Brevik; perl-win32-users@listserv.ActiveState.com > Subject: Re: Making directories > > > - Original Message - > From: "Barry Brevik" > > > Does anyone have advice for me about how they create >

RE: Making directories

2011-10-25 Thread Barry Brevik
Thank you for the tips... I will try them. > -Original Message- > From: Kanhaiya Prasad [mailto:kpra...@aptaracorp.com] > Sent: Monday, October 24, 2011 10:08 PM > To: 'Sisyphus'; Barry Brevik; > perl-win32-users@listserv.ActiveState.com > Subject: RE

RE: Making directories

2011-10-24 Thread Kanhaiya Prasad
yeah _ From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of Justin Allegakoen Sent: Tuesday, October 25, 2011 10:44 AM To: perl-win32-users@listserv.ActiveState.com Subject: Re: Making directories On 25

Re: Making directories

2011-10-24 Thread Justin Allegakoen
On 25 October 2011 13:08, Kanhaiya Prasad wrote: > Hi > > Here is the very good approach to create directories as well recursive > directories. > > use File::Copy; > mkdir "c:/abc/def/xyz; > > (It will create all 3 directories and subdirectories as well) > > ---Kanhaiya > > You probably mean Fi

RE: Making directories

2011-10-24 Thread Kanhaiya Prasad
e.com [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of Sisyphus Sent: Tuesday, October 25, 2011 6:30 AM To: Barry Brevik; perl-win32-users@listserv.ActiveState.com Subject: Re: Making directories - Original Message - From: "Barry Brevik" > Does anyone have advic

Re: Making directories

2011-10-24 Thread Sisyphus
- Original Message - From: "Barry Brevik" > Does anyone have advice for me about how they create directories with > Perl? I've used: system 'mkdir', $path; but check 'mkdir /?' to see if that approach is suitable for you. Cheers, Rob ___ P

Making directories

2011-10-24 Thread Barry Brevik
I'm still on Perl v5.8.8. I was writing an app today that needs to create a sub directory if it does not already exist. Originally, I used mkdir( ). Notice that there is no 2nd arg. After I did this, the app copies a bunch of files into that sub directory, which works fine. HOWEVER, when the sa