You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Regis Xu (JIRA)" <ji...@apache.org> on 2008/10/06 11:31:45 UTC

[jira] Updated: (HARMONY-5987) [classlib][luni] - different behavior with RI when file path contains "\\" in Linux

     [ https://issues.apache.org/jira/browse/HARMONY-5987?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Regis Xu updated HARMONY-5987:
------------------------------

    Attachment: HARMONY-5987.diff

as discussed in mailing-list, move 
if (jclSeparator == '/') return 
to earlier to avoid convert separator on Unix

> [classlib][luni] - different behavior with RI when file path contains "\\" in Linux
> -----------------------------------------------------------------------------------
>
>                 Key: HARMONY-5987
>                 URL: https://issues.apache.org/jira/browse/HARMONY-5987
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>    Affects Versions: 5.0M7
>            Reporter: Regis Xu
>             Fix For: 5.0M8
>
>         Attachments: HARMONY-5987.diff
>
>
> Consider the test:
>         File file = new File("d1\\d2");
>         file.mkdirs();
> RI create a directory named "d1\d2", while Harmony create two directories "d1" and "d1/d2", seems RI doesn't covert windows file separator char "\\" to system separator char on Linux, and
> spec says nothing about it. I quickly navigate the source, found we have a method fixSlashes in java.io.File, which convert "\\" or "/" to system separator char, so  it may be intended or a 
> feature of harmony?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.