| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2006-01-14 04:05 UTC] mauroi at digbang dot com
  [2006-01-16 20:48 UTC] tony2001@php.net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 15:00:01 2025 UTC | 
Description: ------------ mkdir with the recursive parameter, trying to create a directory relative to the current working directory, fails in some cases Reproduce code: --------------- mkdir('level1\\level2', null, true); mkdir('.\\level1a\\level2a', null, true); Expected result: ---------------- level1\level2 and level1a\level2s created Actual result: -------------- the first statement fails with: Warning: mkdir(): No such file or directory