You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Mark Hindess (JIRA)" <ji...@apache.org> on 2008/09/30 14:28:44 UTC

[jira] Commented: (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:comment-tabpanel&focusedCommentId=12635733#action_12635733 ] 

Mark Hindess commented on HARMONY-5987:
---------------------------------------

Regis,  I noticed a similar issue a while back.  I fixed it (and a couple of invalid tests) in r698140.  Does this resolve all the issues you are seeing?


> [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
>
>
> 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.