Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for PATH (0.19 sec)

  1. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            this(config, command, null);
        }
    
    
        protected ServerMessageBlock ( Configuration config, byte command, String path ) {
            this.config = config;
            this.command = command;
            this.path = path;
            this.flags = (byte) ( SmbConstants.FLAGS_PATH_NAMES_CASELESS | SmbConstants.FLAGS_PATH_NAMES_CANONICALIZED );
            this.pid = config.getPid();
            this.batchLevel = 0;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

            if ( log.isDebugEnabled() ) {
                log.debug("Resolving DFS path " + path);
            }
    
            if ( path.length() >= 2 && path.charAt(0) == '\\' && path.charAt(1) == '\\' ) {
                throw new SmbException("Path must not start with double slash: " + path);
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformation.java

        }
    
    
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            int start = dstIndex;
            dst[ dstIndex++ ] = (byte) 0x04;
            dstIndex += writeString(this.path, dst, dstIndex);
            return dstIndex - start;
        }
    
    
        @Override
        protected int readParameterWordsWireFormat ( byte[] buffer, int bufferIndex ) {
            return 0;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java

        NtlmPasswordAuthentication auth = null;
        String path;
        SigningDigest digest = null;
        ServerMessageBlock response;
    
        ServerMessageBlock() {
            flags = (byte)( FLAGS_PATH_NAMES_CASELESS | FLAGS_PATH_NAMES_CANONICALIZED );
            pid = PID;
            batchLevel = 0;
        }
    
        void reset() {
            flags = (byte)( FLAGS_PATH_NAMES_CASELESS | FLAGS_PATH_NAMES_CANONICALIZED );
            flags2 = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 21K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeImpl.java

                    /*
                     * When DFS is in action all request paths are
                     * full UNC paths minus the first backslash like
                     * \server\share\path\to\file
                     * as opposed to normally
                     * \path\to\file
                     */
                    RequestWithPath preq = (RequestWithPath) request;
                    if ( preq.getPath() != null && preq.getPath().length() > 0 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbResource.java

         * respect to other filesystem activities.
         * 
         * @throws CIFSException
         */
        void createNewFile () throws CIFSException;
    
    
        /**
         * Creates a directory with the path specified by this <tt>SmbResource</tt>
         * and any parent directories that do not exist. This method will fail
         * when used with <code>smb://</code>, <code>smb://workgroup/</code>,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Dfs.java

        }
        synchronized void insert(String path, DfsReferral dr) {
            int s1, s2;
            String server, share, key;
    
            if (DISABLED)
                return;
    
            s1 = path.indexOf('\\', 1);
            s2 = path.indexOf('\\', s1 + 1);
            server = path.substring(1, s1);
            share = path.substring(s1 + 1, s2);
    
            key = path.substring(0, dr.pathConsumed).toLowerCase();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequest.java

        private int treeFlags;
        private String path;
    
    
        /**
         * @param config
         * @param path
         */
        public Smb2TreeConnectRequest ( Configuration config, String path ) {
            super(config, SMB2_TREE_CONNECT);
            this.path = path;
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/dfs/DfsReferralRequestBuffer.java

    public class DfsReferralRequestBuffer implements Encodable {
    
        private final int maxReferralLevel;
        private final String path;
    
    
        /**
         * @param filename
         * @param maxReferralLevel
         */
        public DfsReferralRequestBuffer ( String filename, int maxReferralLevel ) {
            this.path = filename;
            this.maxReferralLevel = maxReferralLevel;
        }
    
    
        /**
         * {@inheritDoc}
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/SmbTree.java

            }
            request.tid = tid;
            if( inDfs && !service.equals("IPC") && request.path != null && request.path.length() > 0 ) {
                /* When DFS is in action all request paths are
                 * full UNC paths minus the first backslash like
                 *   \server\share\path\to\file
                 * as opposed to normally
                 *   \path\to\file
                 */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
Back to top