Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Schily (0.09 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

         * a file or directory. See the description and examples of smb URLs above.
         *
         * @param   url A URL string
         * @throws  MalformedURLException
         *          If the <code>parent</code> and <code>child</code> parameters
         *          do not follow the prescribed syntax
         */
    
        public SmbFile(final String url) throws MalformedURLException {
            this(new URL(null, url, Handler.SMB_HANDLER));
        }
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                }
                return new SmbFile(this, name);
            } catch (MalformedURLException | UnknownHostException e) {
                // this should not actually happen
                throw new SmbException("Failed to resolve child element", e);
            }
        }
    
        SmbFileHandleImpl openUnshared(final int flags, final int access, final int sharing, final int attrs, final int options)
                throws CIFSException {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top