- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for BasicFileInformation (0.31 seconds)
-
src/main/java/jcifs/internal/fscc/BasicFileInformation.java
* Combines SMB basic file info with FSCC file information capabilities, * providing access to fundamental file metadata used in SMB file system operations. * * @author mbechler */ public interface BasicFileInformation extends SmbBasicFileInfo, FileInformation {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/BasicFileInformationTest.java
} } @Test @DisplayName("Test custom implementation of BasicFileInformation") void testCustomImplementation() { // Given - Create a custom implementation BasicFileInformation customImpl = new BasicFileInformation() { @Override public int getAttributes() { return 0x123; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
* This structure provides standard file information including allocation size, end-of-file position, * number of links, deletion status, and directory flag. */ public class FileStandardInfo implements BasicFileInformation { private long allocationSize; private long endOfFile; private int numberOfLinks; private boolean deletePending; private boolean directory; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
* This structure contains basic file information including creation time, last access time, last write time, * change time, and file attributes for querying and setting file metadata. */ public class FileBasicInfo implements BasicFileInformation { private long createTime; private long lastAccessTime; private long lastWriteTime; private long changeTime; private int attributes; /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 4.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java
fileStandardInfo = new FileStandardInfo(); } @Test @DisplayName("Test getFileInformationLevel returns FILE_STANDARD_INFO") void testGetFileInformationLevel() { assertEquals(BasicFileInformation.FILE_STANDARD_INFO, fileStandardInfo.getFileInformationLevel()); } @Test @DisplayName("Test getAttributes returns 0") void testGetAttributes() {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.1K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
if (log.isDebugEnabled()) { log.debug("Path information " + response); } final BasicFileInformation info = response.getInfo(BasicFileInformation.class); this.isExists = true; long currentTime = System.currentTimeMillis(); long cacheTimeout = th.getConfig().getAttributeCacheTimeout();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0)