Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setFileInformation (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

         *
         * @param <T>
         *            the type of file information
         * @param fi
         *            the file information to set
         */
        public <T extends FileInformation & Encodable> void setFileInformation(final T fi) {
            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
            setFileInfoClass(fi.getFileInformationLevel());
            setInfo(fi);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

    import jcifs.Configuration;
    import jcifs.internal.fscc.FileBasicInfo;
    import jcifs.internal.fscc.FileInformation;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * Trans2 SetFileInformation request message for modifying file metadata.
     * This class implements the TRANS2_SET_FILE_INFORMATION transaction to update
     * file attributes, timestamps, and other metadata properties.
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top