- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for createDisposition (1.29 sec)
-
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
} /** * Set the create disposition specifying what action to take if file exists or doesn't exist * @param createDisposition the createDisposition to set */ public void setCreateDisposition(final int createDisposition) { this.createDisposition = createDisposition; } /** * Set the create options that control file creation behaviorRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
// Check default create disposition (OPEN) at offset 36 int createDisposition = (buffer[36] & 0xFF) | ((buffer[37] & 0xFF) << 8) | ((buffer[38] & 0xFF) << 16) | ((buffer[39] & 0xFF) << 24); assertEquals(Smb2CreateRequest.FILE_OPEN, createDisposition); } @Test @DisplayName("Test path with special characters")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0)