- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getFileSystemInformationClass (0.67 seconds)
-
src/main/java/jcifs/internal/fscc/FileFsFullSizeInformation.java
*/ public FileFsFullSizeInformation() { } /** * {@inheritDoc} * * @see jcifs.internal.fscc.FileSystemInformation#getFileSystemInformationClass() */ @Override public byte getFileSystemInformationClass() { return FS_FULL_SIZE_INFO; } @Override public long getCapacity() { return this.alloc * this.sectPerAlloc * this.bytesPerSect; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileFsSizeInformation.java
*/ public FileFsSizeInformation() { } /** * {@inheritDoc} * * @see jcifs.internal.fscc.FileSystemInformation#getFileSystemInformationClass() */ @Override public byte getFileSystemInformationClass() { return FS_SIZE_INFO; } @Override public long getCapacity() { return this.alloc * this.sectPerAlloc * this.bytesPerSect; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/SmbInfoAllocation.java
private int sectPerAlloc; private int bytesPerSect; /** * {@inheritDoc} * * @see jcifs.internal.fscc.FileSystemInformation#getFileSystemInformationClass() */ @Override public byte getFileSystemInformationClass() { return FileSystemInformation.SMB_INFO_ALLOCATION; } @Override public long getCapacity() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.9K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileSystemInformation.java
*/ byte FS_FULL_SIZE_INFO = 7; /** * Gets the file system information class. * * @return file system information class */ byte getFileSystemInformationClass();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.6K bytes - Click Count (0)