- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getFileType (0.68 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
@Override public int getAttributes() { return getFileAttributes(); } /** * Gets the file type. * * @return the fileType */ public final int getFileType() { return this.fileType; } /** * Gets the device state. * * @return the deviceState */ public final int getDeviceState() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java
public SmbComNTCreateAndXResponse(final Configuration config) { super(config); } /** * Gets the file type. * * @return the fileType */ public final int getFileType() { return this.fileType; } /** * Checks if the response is extended. * * @return the isExtended */ public final boolean isExtended() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
*/ if (this.getCommand() == SMB_COM_NT_CREATE_ANDX && ((SmbComNTCreateAndXResponse) this).isExtended() && ((SmbComNTCreateAndXResponse) this).getFileType() != 1) { this.wordCount += 8; } } bufferIndex = start + 1 + this.wordCount * 2; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
customizeCreate(req, resp); h.send(req, resp); info = resp; fileSize = resp.getEndOfFile(); this.fileLocator.updateType(resp.getFileType()); fh = new SmbFileHandleImpl(config, resp.getFid(), h, uncPath, flags, access, attrs, options, resp.getEndOfFile()); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)