Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExistingHandle (0.23 sec)

  1. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

            }
        }
    
        /**
         * Get existing handle data for reconnection
         * @param path the file path
         * @return the file ID if available, null otherwise
         */
        public byte[] getExistingHandle(String path) {
            HandleInfo info = getHandleForReconnect(path);
            return info != null ? info.getFileId() : null;
        }
    
        /**
         * Store handle information after successful create
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                            if (persistentManager != null) {
                                // Check if we can reconnect an existing handle
                                byte[] existingHandle = persistentManager.getExistingHandle(uncPath);
                                if (existingHandle != null) {
                                    // Try to reconnect durable handle
                                    req.addDurableHandleReconnectContext(existingHandle);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top