According to standard/file.c it looks like mkdir second argument is optional
and that it's 0777 by default.

So no need of any mode for windows. I'm working on the doc now.

--
Regards.
M.CHAILLAN Nicolas
[EMAIL PROTECTED]
www.WorldAKT.com Hébergement de sites internets.

"Michael Mauch" <[EMAIL PROTECTED]> a écrit dans le message de news:
[EMAIL PROTECTED]
> Gabor Hojtsy <[EMAIL PROTECTED]> wrote:
> >> 0777 is fine for WIN32.
> >
> > Well, this is not too scientific. The user notes indicate on that
> > page, that the read/write permissions can actually be set...
>
> Which user note is that? I can't find one saying that the permissions
> work on Win32. And in virtual_mkdir() in tsrm_virtual_cwd.c I see:
>
> #ifdef TSRM_WIN32
>         retval = mkdir(new_state.cwd);
> #else
>         retval = mkdir(new_state.cwd, mode);
> #endif
>
> So perhaps the manual should state that the second parameter of PHP's
> mkdir is ignored on Win32?
>
> To open another can of worms: the chmod manual page is also not very
> specific about the modes - and as I understand, you can have at least
> read-only files on Windows.
>
> Regards...
> Michael



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to