- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for shareAccess (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
} // map shareAccess as far as we can if ((shareAccess & SmbConstants.FILE_SHARE_READ) != 0 && (shareAccess & SmbConstants.FILE_SHARE_WRITE) != 0) { this.desiredAccess |= SHARING_DENY_NONE; } else if (shareAccess == SmbConstants.FILE_NO_SHARE) { this.desiredAccess |= SHARING_DENY_READ_WRITE_EXECUTE; } else if ((shareAccess & SmbConstants.FILE_SHARE_WRITE) == 0) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 7.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
this.fileAttributes = fileAttributes; } /** * Set the share access mode for the file * @param shareAccess the shareAccess to set */ public void setShareAccess(final int shareAccess) { this.shareAccess = shareAccess; } /** * Set the create disposition specifying what action to take if file exists or doesn't existCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 22.9K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
if ((shareAccess & ~(FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE)) != 0) { throw new RuntimeException("Illegal shareAccess parameter"); } this.shareAccess = shareAccess; } /** * Constructs an SmbFile representing a resource on an SMB network such * as a file or directory. The second parameter is a relative path from
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 112.2K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
* @param shareAccess the share access flags for file sharing * @throws SmbException if an SMB error occurs * @throws MalformedURLException if the URL is malformed * @throws UnknownHostException if the host cannot be resolved */ public SmbRandomAccessFile(final String url, final String mode, final int shareAccess)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
void testSetShareAccess() { request = new Smb2CreateRequest(mockConfig, "test.txt"); int shareAccess = Smb2CreateRequest.FILE_SHARE_READ | Smb2CreateRequest.FILE_SHARE_WRITE | Smb2CreateRequest.FILE_SHARE_DELETE; request.setShareAccess(shareAccess); byte[] buffer = new byte[1024]; request.writeBytesWireFormat(buffer, 0);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 18.6K bytes - Click Count (0) -
src/main/java/jcifs/SmbConstants.java
/** * When specified as the <code>shareAccess</code> constructor parameter, * other SMB clients (including other threads making calls into jCIFS) * will not be permitted to access the target file and will receive "The * file is being accessed by another process" message. */ int FILE_NO_SHARE = 0x00; /** * When specified as the <code>shareAccess</code> constructor parameter,Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 12.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
* @throws UnknownHostException if the host cannot be resolved */ public SmbFileOutputStream(final String url, final int shareAccess) throws SmbException, MalformedURLException, UnknownHostException { this(new SmbFile(url, "", null, shareAccess), false); } SmbFileOutputStream(final SmbFile file, final boolean append, final int openFlags)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11K bytes - Click Count (0)