RE: Creating a new directory from a script under windows

2005-12-05 Thread McGlinchy, Alistair
Alejandro Santillan wrote: > The directory > is create while the scrip runs under linux, but under windows > it is not able to do it. It seems a permission problem, but > the directory has all the permissions enabled and none > disabled. The mkdir part of the script doesn't work, as it > seems

RE: Creating a new directory from a script under windows

2005-12-05 Thread Bullock, Howard A.
See   use File::Path;    mkpath(['/foo/bar/baz', 'blurfl/quux'], 1, 0711);    rmtree(['foo/bar/baz', 'blurfl/quux'], 1, 1);   ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.Acti

Re: Creating a new directory from a script under windows

2005-12-05 Thread Chris Wagner
At 09:33 AM 12/5/2005 -0300, Alejandro Santillan wrote: >The directory is create while the scrip runs under linux, but under windows >it is not able to do it. What webserver are u using? IIS has known finicky permission problems. >#now trying to create the session 11232 that fails >$sys = "mkdi

Re: Creating a new directory from a script under windows

2005-12-05 Thread mark pryor
Alejandro Santillan <[EMAIL PROTECTED]> wrote: I am programing a cgi that performs a series of tasks while interacting withthe client and that should keep a session alive for a week.In order to do that I decided to create a session directory each time aclient sings up.The directory is create while

Creating a new directory from a script under windows

2005-12-05 Thread Alejandro Santillan
I am programing a cgi that performs a series of tasks while interacting with the client and that should keep a session alive for a week. In order to do that I decided to create a session directory each time a client sings up. The directory is create while the scrip runs under linux, but under windo