Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Kompen (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * this file is open. This constant may be logically OR'd with other share
     * access flags.
     */
        public static final int FILE_SHARE_READ   = 0x01;
    /**
     * When specified as the <tt>shareAccess</tt> constructor parameter,
     * other SMB clients will be permitted to write to the target file while
     * this file is open. This constant may be logically OR'd with other share
     * access flags.
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbFile.java

                    }
                    else if ( ( flags & SmbConstants.O_CREAT ) == O_CREAT ) {
                        req.setCreateDisposition(Smb2CreateRequest.FILE_OPEN_IF);
                    }
                    else {
                        req.setCreateDisposition(Smb2CreateRequest.FILE_OPEN);
                    }
    
                    req.setShareAccess(sharing);
                    req.setFileAttributes(attrs);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top