Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for queryFSInformation (0.09 sec)

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

    import jcifs.Configuration;
    import jcifs.internal.fscc.FileSystemInformation;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * Trans2 QueryFSInformation request message for querying file system information.
     * This class implements the TRANS2_QUERY_FS_INFORMATION transaction to retrieve
     * various file system attributes such as volume information, size, and capabilities.
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

    import jcifs.internal.fscc.FileSystemInformation;
    import jcifs.internal.fscc.SmbInfoAllocation;
    import jcifs.internal.smb1.trans.SmbComTransaction;
    import jcifs.internal.smb1.trans.SmbComTransactionResponse;
    
    /**
     * Trans2 QueryFSInformation response message for file system information queries.
     * This class handles the response from a TRANS2_QUERY_FS_INFORMATION request,
     * returning various file system information levels such as volume size and attributes.
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                        level = Trans2QueryFSInformationResponse.SMB_INFO_ALLOCATION;
                        return queryFSInformation(level);
                    }
                    throw ex;
                }
            }
            return 0L;
        }
    
        private long queryFSInformation(final int level) throws SmbException {
            Trans2QueryFSInformationResponse response = new Trans2QueryFSInformationResponse(level);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                        ai = queryFSInformation(th, AllocInfo.class, FileSystemInformation.SMB_INFO_ALLOCATION);
                        break;
                    }
                default:
                    throw ex;
                }
            }
            return ai;
        }
    
        private <T extends FileSystemInformation> T queryFSInformation(final SmbTreeHandleImpl th, final Class<T> clazz, final byte level)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top