Vladimir Avdonin created CB-7883:
------------------------------------

             Summary: toURL() returns invalid URL values on windows
                 Key: CB-7883
                 URL: https://issues.apache.org/jira/browse/CB-7883
             Project: Apache Cordova
          Issue Type: Bug
          Components: Plugin File, Windows
    Affects Versions: 4.0.0
            Reporter: Vladimir Avdonin


toURL method called on etnries returned by resolveLocalFileSystemURL and 
getDirectory produces path instead of URL. Note also inconsistent use of 
forward/backward slash separator in test output below.

Below is test program and its output, demonstrating the problem:
{code}
-----------------test program-----------------------
window.resolveLocalFileSystemURL(
        'file:///',
        function(entry) {
                console.log('Root URL is '+entry.toURL());
                entry.getDirectory(
                        'Subdir',
                        {create:true},
                        function(entry1) {
                                console.log('Subdir URL is '+entry1.toURL());
                        },
                        function(err) { console.log(err); }
                );
        },
        function(err) { console.log(err); }
);
-------------output------------------------
Root URL is 
C:/Users/vladimir/AppData/Local/Packages/com.example.hello_dsh9t8a1qg3mw/LocalState/
Subdir URL is 
C:\Users\vladimir\AppData\Local\Packages\com.example.hello_dsh9t8a1qg3mw\LocalState\Subdir/
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to