- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for getExistingHandle (0.09 seconds)
-
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 createCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 13K bytes - Click Count (0) -
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);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0)