Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            setAttributes( getAttributes() | ATTR_READONLY );
        }
    
    /**
     * Turn off the read-only attribute of this file. This is shorthand for
     * <tt>setAttributes( getAttributes() & ~ATTR_READONLY )</tt>.
     *
     * @throws SmbException
     */
        public void setReadWrite() throws SmbException {
            setAttributes( getAttributes() & ~ATTR_READONLY );
        }
    
    /**
    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

        }
    
    
        @Override
        public void setReadOnly () throws SmbException {
            setAttributes(getAttributes() | ATTR_READONLY);
        }
    
    
        @Override
        public void setReadWrite () throws SmbException {
            setAttributes(getAttributes() & ~ATTR_READONLY);
        }
    
    
        /**
         * Returns a {@link java.net.URL} for this <code>SmbFile</code>. The
    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