- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for getFileInformationLevel (0.14 seconds)
-
src/main/java/jcifs/internal/fscc/FileInternalInfo.java
*/ public FileInternalInfo() { } /** * {@inheritDoc} * * @see jcifs.internal.fscc.FileInformation#getFileInformationLevel() */ @Override public byte getFileInformationLevel() { return FILE_INTERNAL_INFO; } /** * Gets the file index number. * * @return the index number assigned by the file system */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.6K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileEndOfFileInformation.java
*/ public FileEndOfFileInformation() { } /** * {@inheritDoc} * * @see jcifs.internal.fscc.FileInformation#getFileInformationLevel() */ @Override public byte getFileInformationLevel() { return FileInformation.FILE_ENDOFFILE_INFO; } /** * Constructs file end of file information. *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileRenameInformation2.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
this.changeTime = change; this.attributes = attributes; } /** * {@inheritDoc} * * @see jcifs.internal.fscc.FileInformation#getFileInformationLevel() */ @Override public byte getFileInformationLevel() { return FileInformation.FILE_BASIC_INFO; } @Override public int getAttributes() { return this.attributes; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileInformation.java
*/ byte FILE_RENAME_INFO = 10; /** * Gets the file information level/class for this file information object. * * @return the file information class */ byte getFileInformationLevel();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
private boolean directory; /** * Default constructor for decoding file standard information. */ public FileStandardInfo() { } @Override public byte getFileInformationLevel() { return FILE_STANDARD_INFO; } @Override public int getAttributes() { return 0; } @Override public long getCreateTime() { return 0L;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java
final int start = dstIndex; SMBUtil.writeInt2(this.fid, dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(Trans2QueryPathInformation.mapInformationLevel(this.info.getFileInformationLevel()), dst, dstIndex); dstIndex += 2; SMBUtil.writeInt2(0, dst, dstIndex); dstIndex += 2; return dstIndex - start; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java
*/ public <T extends FileInformation & Encodable> void setFileInformation(final T fi) { setInfoType(Smb2Constants.SMB2_0_INFO_FILE); setFileInfoClass(fi.getFileInformationLevel()); setInfo(fi); } /** * Sets the encodable information object for this request * * @param info * the info to set */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.7K bytes - Click Count (0)