Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 33 for LastWriteTime (0.43 sec)

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

            long createTime;
            long lastAccessTime;
            long lastWriteTime;
            long changeTime;
            int attributes;
    
            public int getAttributes() {
                return attributes;
            }
            public long getCreateTime() {
                return createTime;
            }
            public long getLastWriteTime() {
                return lastWriteTime;
            }
            public long getSize() {
                return 0L;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java

        private int fid;
        private int attributes;
        private long createTime, lastWriteTime;
    
        Trans2SetFileInformation( int fid, int attributes, long createTime, long lastWriteTime ) {
            this.fid = fid;
            this.attributes = attributes;
            this.createTime = createTime;
            this.lastWriteTime = lastWriteTime;
            command = SMB_COM_TRANSACTION2;
            subCommand = TRANS2_SET_FILE_INFORMATION;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

                        + new Date(this.creationTime) + ",lastAccessTime=" + new Date(this.lastAccessTime) + ",lastWriteTime="
                        + new Date(this.lastWriteTime) + ",changeTime=" + new Date(this.changeTime) + ",endOfFile=" + this.endOfFile + ",allocationSize="
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

                ",createAction=0x" + Hexdump.toHexString( createAction, 4 ) +
                ",creationTime=" + new Date( creationTime ) +
                ",lastAccessTime=" + new Date( lastAccessTime ) +
                ",lastWriteTime=" + new Date( lastWriteTime ) +
                ",changeTime=" + new Date( changeTime ) +
                ",extFileAttributes=0x" + Hexdump.toHexString( extFileAttributes, 4 ) +
                ",allocationSize=" + allocationSize +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

         */
        @Override
        public final long getLastAccessTime () {
            return this.lastAccessTime;
        }
    
    
        /**
         * @return the lastWriteTime
         */
        @Override
        public final long getLastWriteTime () {
            return this.lastWriteTime;
        }
    
    
        /**
         * @return the changeTime
         */
        public final long getChangeTime () {
            return this.changeTime;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

         * @param fid
         * @param attributes
         * @param createTime
         * @param lastWriteTime
         * @param lastAccessTime
         */
        public Trans2SetFileInformation ( Configuration config, int fid, int attributes, long createTime, long lastWriteTime, long lastAccessTime ) {
            this(config, fid, new FileBasicInfo(createTime, lastAccessTime, lastWriteTime, 0L, attributes | 0x80));
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbFileHandle.java

         */
        SmbTreeHandle getTree ();
    
    
        /**
         * @return whether the file descriptor is valid
         */
        boolean isValid ();
    
    
        /**
         * @param lastWriteTime
         * @throws CIFSException
         */
        void close ( long lastWriteTime ) throws CIFSException;
    
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

         */
        @Override
        public final long getLastAccessTime () {
            return this.lastAccessTime;
        }
    
    
        /**
         * @return the lastWriteTime
         */
        @Override
        public final long getLastWriteTime () {
            return this.lastWriteTime;
        }
    
    
        /**
         * @return the changeTime
         */
        public final long getChangeTime () {
            return this.changeTime;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                    ",fileIndex=" + fileIndex +
                    ",creationTime=" + new Date( creationTime ) +
                    ",lastAccessTime=" + new Date( lastAccessTime ) +
                    ",lastWriteTime=" + new Date( lastWriteTime ) +
                    ",changeTime=" + new Date( changeTime ) +
                    ",endOfFile=" + endOfFile +
                    ",allocationSize=" + allocationSize +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFileHandleImpl.java

         * @see jcifs.SmbFileHandle#close(long)
         */
        @Override
        public synchronized void close ( long lastWriteTime ) throws CIFSException {
            closeInternal(lastWriteTime, true);
        }
    
    
        /**
         * @param lastWriteTime
         * @throws SmbException
         */
        void closeInternal ( long lastWriteTime, boolean explicit ) throws CIFSException {
            SmbTreeHandleImpl t = this.tree;
            try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
Back to top