src/java.base/windows/classes/sun/net/www/protocol/file/Handler.java
changeset 55704 04cccf60fe44
parent 53018 8bf9268df0e2
equal deleted inserted replaced
55703:6bb46e2777ab 55704:04cccf60fe44
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    93          * attempt to treat this as a UNC path. See 4180841
    93          * attempt to treat this as a UNC path. See 4180841
    94          */
    94          */
    95         path = "\\\\" + host + path;
    95         path = "\\\\" + host + path;
    96         File f = new File(path);
    96         File f = new File(path);
    97         if (f.exists()) {
    97         if (f.exists()) {
    98             return createFileURLConnection(url, f);
    98             return new UNCFileURLConnection(url, f, path);
    99         }
    99         }
   100 
   100 
   101         /*
   101         /*
   102          * Now attempt an ftp connection.
   102          * Now attempt an ftp connection.
   103          */
   103          */