- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for BasicFileInformation (0.06 sec)
-
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) -
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) -
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)