Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getFileId (0.14 sec)

  1. src/main/java/jcifs/smb/SmbFileHandleImpl.java

        public int getFid () throws SmbException {
            if ( !isValid() ) {
                throw new SmbException("Descriptor is no longer valid");
            }
            return this.fid;
        }
    
    
        public byte[] getFileId () throws SmbException {
            if ( !isValid() ) {
                throw new SmbException("Descriptor is no longer valid");
            }
            return this.fileId;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

        }
    
    
        /**
         * @return the ioctlFlags
         */
        public int getIoctlFlags () {
            return this.ioctlFlags;
        }
    
    
        /**
         * @return the fileId
         */
        public byte[] getFileId () {
            return this.fileId;
        }
    
    
        /**
         * @return the outputData
         */
        public Decodable getOutputData () {
            return this.outputData;
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 7.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                    Smb2CreateResponse resp = h.send(req);
                    info = resp;
                    fileSize = resp.getEndOfFile();
                    fh = new SmbFileHandleImpl(config, resp.getFileId(), h, uncPath, flags, access, 0, 0, resp.getEndOfFile());
                }
                else if ( h.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                    SmbComNTCreateAndXResponse resp = new SmbComNTCreateAndXResponse(config);
    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