Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FILE_STANDARD_INFO (0.38 sec)

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

         * @return
         */
        static long mapInformationLevel(final int il) {
            switch (il) {
            case FileInformation.FILE_BASIC_INFO:
                return 0x0101;
            case FileInformation.FILE_STANDARD_INFO:
                return 0x0102;
            case FileInformation.FILE_ENDOFFILE_INFO:
                return 0x0104;
            }
            throw new IllegalArgumentException("Unsupported information level " + il);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/fscc/FileInformation.java

        byte FILE_ENDOFFILE_INFO = 20;
    
        /**
         * File basic information class constant.
         */
        byte FILE_BASIC_INFO = 0x4;
        /**
         * File standard information class constant.
         */
        byte FILE_STANDARD_INFO = 0x5;
    
        /**
         * File internal information class constant.
         */
        byte FILE_INTERNAL_INFO = 0x6;
    
        /**
         * File rename information class constant.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

        /**
         * 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;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

            FileInformation inf;
            switch (this.informationLevel) {
            case FileInformation.FILE_BASIC_INFO:
                inf = new FileBasicInfo();
                break;
            case FileInformation.FILE_STANDARD_INFO:
                inf = new FileStandardInfo();
                break;
            case FileInformation.FILE_INTERNAL_INFO:
                inf = new FileInternalInfo();
                break;
            default:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
Back to top