Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for DELETE (0.17 sec)

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

     */
    
    package jcifs.smb1.smb1;
    
    class SmbComDeleteDirectory extends ServerMessageBlock {
    
        SmbComDeleteDirectory( String directoryName ) {
            this.path = directoryName;
            command = SMB_COM_DELETE_DIRECTORY;
        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
        int writeBytesWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/com/SmbComDelete.java

        private int searchAttributes;
    
    
        /**
         * 
         * @param config
         * @param path
         */
        public SmbComDelete ( Configuration config, String path ) {
            super(config, SMB_COM_DELETE, path);
            this.searchAttributes = SmbConstants.ATTR_HIDDEN | SmbConstants.ATTR_HIDDEN | SmbConstants.ATTR_SYSTEM;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/ACE.java

        /**
         * 
         */
        public static final int FILE_DELETE = 0x00000040; // 7
        /**
         * 
         */
        public static final int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /**
         * 
         */
        public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /**
         * 
         */
        public static final int DELETE = 0x00010000; // 16
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/FileNotifyInformation.java

        /**
         * File stream has modified
         */
        public static final int FILE_ACTION_MODIFIED_STREAM = 0x00000008;
    
        /**
         * 
         */
        public static final int FILE_ACTION_REMOVED_BY_DELETE = 0x00000009;
    
    
        /**
         * @return the action triggering this entry (FILE_ACTION_*)
         */
        int getAction ();
    
    
        /**
         * @return the file name affected by the action
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java

            case SMB_COM_CREATE_DIRECTORY:
                return cfg.getBatchLimit("TreeConnectAndX.CreateDirectory");
            case SMB_COM_DELETE:
                return cfg.getBatchLimit("TreeConnectAndX.Delete");
            case SMB_COM_DELETE_DIRECTORY:
                return cfg.getBatchLimit("TreeConnectAndX.DeleteDirectory");
            case SMB_COM_OPEN_ANDX:
                return cfg.getBatchLimit("TreeConnectAndX.OpenAndX");
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_OBJECT_PATH_SYNTAX_BAD = 0xC000003b;
        public static final int NT_STATUS_SHARING_VIOLATION = 0xC0000043;
        public static final int NT_STATUS_DELETE_PENDING = 0xC0000056;
        public static final int NT_STATUS_NO_LOGON_SERVERS = 0xC000005e;
        public static final int NT_STATUS_USER_EXISTS = 0xC0000063;
        public static final int NT_STATUS_NO_SUCH_USER = 0xC0000064;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResource.java

         *         <code>SmbResource</code> is not a file.
         * @throws CIFSException
         */
        long length () throws CIFSException;
    
    
        /**
         * This method will delete the file or directory specified by this
         * <code>SmbResource</code>. If the target is a directory, the contents of
         * the directory will be deleted as well. If a file within the directory or
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtStatus.java

        public static final int NT_STATUS_OBJECT_PATH_SYNTAX_BAD = 0xC000003b;
        public static final int NT_STATUS_SHARING_VIOLATION = 0xC0000043;
        public static final int NT_STATUS_DELETE_PENDING = 0xC0000056;
        public static final int NT_STATUS_NO_LOGON_SERVERS = 0xC000005e;
        public static final int NT_STATUS_USER_EXISTS = 0xC0000063;
        public static final int NT_STATUS_NO_SUCH_USER = 0xC0000064;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

                setReadWrite();
            }
    
            /*
             * Delete or Delete Directory Request / Response
             */
    
            if( log.level >= 3 )
                log.println( "delete: " + fileName );
    
            if(( attributes & ATTR_DIRECTORY ) != 0 ) {
    
                /* Recursively delete directory contents
                 */
    
                try {
    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)
  10. src/main/java/jcifs/smb1/smb1/ACE.java

        public static final int FILE_EXECUTE          = 0x00000020; // 6
        public static final int FILE_DELETE           = 0x00000040; // 7
        public static final int FILE_READ_ATTRIBUTES  = 0x00000080; // 8
        public static final int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        public static final int DELETE                = 0x00010000; // 16
        public static final int READ_CONTROL          = 0x00020000; // 17
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
Back to top