Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for FILE_WRITE_DATA (0.23 sec)

  1. src/main/java/jcifs/SmbConstants.java

        static final int ATTR_NORMAL = 0x080;
        static final int ATTR_TEMPORARY = 0x100;
    
        // access mask encoding
        static final int FILE_READ_DATA = 0x00000001; // 1
        static final int FILE_WRITE_DATA = 0x00000002; // 2
        static final int FILE_APPEND_DATA = 0x00000004; // 3
        static final int FILE_READ_EA = 0x00000008; // 4
        static final int FILE_WRITE_EA = 0x00000010; // 5
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

                try {
                    open( SmbFile.O_RDONLY, 0, ATTR_NORMAL, 0 );
                    try {
                        dest.open( SmbFile.O_CREAT | SmbFile.O_WRONLY | SmbFile.O_TRUNC,
                                FILE_WRITE_DATA | FILE_WRITE_ATTRIBUTES,
                                attributes, 0 );
                    } catch( SmbAuthException sae ) {
                        if(( dest.attributes & ATTR_READONLY ) != 0 ) {
    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)
Back to top