Edit report at http://bugs.php.net/bug.php?id=37350&edit=1
ID: 37350 Updated by: paj...@php.net Reported by: k95vz5f02 at sneakemail dot com Summary: realpath() doesn't canonicalize case on Windows -Status: Closed +Status: Bogus Type: Bug Package: Filesystem function related Operating System: Windows XP SP2 PHP Version: 5.1.4 Previous Comments: ------------------------------------------------------------------------ [2010-07-24 15:51:46] jah at jahboite dot co dot uk Having examined CWD_API int virtual_file_ex I realise that I'm an idiot and you should disregard my previous comment. realpath is returning the canonicalised path: C:\WINDOWS\system32\cmd.exe I should have checked my bloody filesystem! ------------------------------------------------------------------------ [2010-07-24 00:03:16] jah at jahboite dot co dot uk I don't think this issue is quite fixed yet. php.exe -r "echo realpath('C:\WINDOWS\System32\cmd.exe');" Expected result: ---------------- C:\WINDOWS\System32\cmd.exe Actual result: -------------- C:\WINDOWS\system32\cmd.exe System32 -> system32 This is with the PHP 5.2.14 windows binary on Windows XP SP3. ------------------------------------------------------------------------ [2006-09-26 23:45:01] k95vz5f02 at sneakemail dot com Perfect, thanks for fixing this. Tests done to verify, using the windows version linked to above [PHP 5.2.0RC5-dev (cli) (built: Sep 27 2006 00:22:40)]: realpath("C:\\Program Files") => C:\Program Files realpath("c:\\PrOgRaM fIlEs") => C:\Program Files realpath("C:\\program files\\") => C:\Program Files realpath("C:/program files/") => C:\Program Files realpath("C:\\pRoGrA~1") => C:\Program Files realpath("c:\\windows") => C:\WINDOWS realpath("c:\\wInDoWs\\DoWnLoAdEd PrOgRaM fIlEs\\") => C:\WINDOWS\Downloaded Program Files ------------------------------------------------------------------------ [2006-09-26 22:18:42] tony2...@php.net Please try using this CVS snapshot: http://snaps.php.net/php5.2-latest.tar.gz For Windows: http://snaps.php.net/win32/php5.2-win32-latest.zip ------------------------------------------------------------------------ [2006-06-23 17:19:53] k95vz5f02 at sneakemail dot com On further investigation, realpath doesn't consistently canonicalize the case at all on Windows, I've updated the summary accordingly. First to remember the need for this: the documentation definition for realpath is "Returns canonicalized absolute pathname", and Wikipedia defines canonicalization as "Canonicalization (abbreviated c14n) is the process of converting data that has more than one possible representation into a "standard" canonical representation. This can be done to compare different representations for equivalence (...)" So clearly case should be converted to a standard form on platforms such as Windows that are case-insensitive, and indeed Windows stores the preferred case for every file, for example the standard directory 'C:\Program Files' should be capitalised like that, rather than, e.g. 'C:\program files' or 'C:\PROGRAM FILES', whereas 'C:\WINDOWS' is the preferred case for that directory (on Win XP at least). Tests: 1. realpath("C:\\Program Files") => C:\Program Files 2. realpath("c:\\PrOgRaM fIlEs") => c:\PrOgRaM fIlEs 3. realpath("C:\\program files\\") => C:\program files 4. realpath("C:/program files/") => C:\program files 5. realpath("C:\\pRoGrA~1") => C:\Program Files 6. realpath("c:\\windows") => c:\WINDOWS 7. realpath("c:\\wInDoWs\\DoWnLoAdEd PrOgRaM fIlEs\\") => c:\WINDOWS\DoWnLoAdEd PrOgRaM fIlEs Conclusion: realpath deals with slashes consistently, but it only canonicalizes the case of short filenames (as well as expanding them), not long file names (anything more than 8.3, or with a space, etc); and it never capitalizes the drive letter as it should. A possible solution, if slightly inefficient, would be to convert path components into short (8.3) form then apply the normal realpath logic. ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/bug.php?id=37350 -- Edit this bug report at http://bugs.php.net/bug.php?id=37350&edit=1