Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Trans2SetFileInformation (0.11 sec)

  1. src/main/java/jcifs/internal/smb1/trans2/Trans2SetFileInformation.java

     * file attributes, timestamps, and other metadata properties.
     */
    public class Trans2SetFileInformation extends SmbComTransaction {
    
        private final int fid;
        private final FileInformation info;
    
        /**
         * Constructs a Trans2SetFileInformation request with file information object.
         *
         * @param config the SMB configuration
         * @param fid the file identifier
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2SetFileInformation.java

     */
    
    package jcifs.smb1.smb1;
    
    class Trans2SetFileInformation extends SmbComTransaction {
    
        static final int SMB_FILE_BASIC_INFO = 0x101;
    
        private final int fid;
        private final int attributes;
        private final long createTime, lastWriteTime;
    
        Trans2SetFileInformation(final int fid, final int attributes, final long createTime, final long lastWriteTime) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/Trans2SetFileInformationTest.java

            assertEquals(ServerMessageBlock.SMB_COM_TRANSACTION2, trans2SetFileInformation.command);
            assertEquals(Trans2SetFileInformation.TRANS2_SET_FILE_INFORMATION, trans2SetFileInformation.subCommand);
            assertEquals(6, trans2SetFileInformation.maxParameterCount);
            assertEquals(0, trans2SetFileInformation.maxDataCount);
            assertEquals(0, trans2SetFileInformation.maxSetupCount);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top