- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getFileSystemInformationClass (0.95 sec)
-
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; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.1K bytes - Viewed (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; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (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() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (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();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0)