Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for BasicFileInformation (0.64 sec)

  1. 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 {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. 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;
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. 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;
    
        /**
    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/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;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  5. 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() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  6. 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();
    
    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