- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for lastAccess (0.06 sec)
-
src/main/java/jcifs/internal/fscc/FileBasicInfo.java
public FileBasicInfo () {} /** * @param create * @param lastAccess * @param lastWrite * @param change * @param attributes */ public FileBasicInfo ( long create, long lastAccess, long lastWrite, long change, int attributes ) { this.createTime = create; this.lastAccessTime = lastAccess; this.lastWriteTime = lastWrite; this.changeTime = change;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
} @Override public long lastModified () { return 0L; } /** * {@inheritDoc} * * @see jcifs.smb.FileEntry#lastAccess() */ @Override public long lastAccess () { return 0L; } @Override public long length () { return 0L; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Feb 17 09:30:57 UTC 2019 - 3.1K bytes - Viewed (0) -
README.md
* Drop pre-java 1.7 support * Unify authentication subsystem, NTLMSSP/Kerberos support * Large ReadX/WriteX support * Streaming list operations * NtTransNotifyChange support * Google patches: various bugfixes, lastAccess support, retrying requests * A proper test suite * Various fixes ## Others ### This jcifs or jcifs-ng jcifs-ng will be a proper choice for many users. There are a lot of SMB devices in the world.
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed May 10 09:29:34 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryAdapterIterator.java
getParent(), e.getName(), true, SmbConstants.TYPE_FILESYSTEM, e.getAttributes(), e.createTime(), e.lastModified(), e.lastAccess(), e.length()); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileAttributesTest.java
@Test public void testLastAccessed () throws CIFSException, MalformedURLException, UnknownHostException { try ( SmbResource f = createTestFile() ) { try { assertCloseTime(f.lastAccess()); } finally { f.delete(); } } } @Test
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/FileEntry.java
long createTime (); /** * * @return the last modified time */ long lastModified (); /** * * @return the last access time */ long lastAccess (); /** * * @return the file size */ long length (); /** * @return the file index inside the parent */ int getFileIndex ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
SmbConstants.FILE_NO_SHARE) ) { long mtime = src.lastModified(); long ctime = src.createTime(); long atime = src.lastAccess(); int i = 0; long off = 0L; while ( true ) { int read = fis.read(b[ i ]); synchronized ( w ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 17.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2Response.java
return 0L; } @Override public long lastModified () { return 0L; } @Override public long lastAccess () { return 0L; } @Override public long length () { return 0L; } @Override public String toString () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* @param lastAccess * the last access time as milliseconds since Jan 1, 1970 * @throws CIFSException * @throws jcifs.smb.SmbUnsupportedOperationException * if CAP_NT_SMBS is unavailable */ void setFileTimes ( long createTime, long lastModified, long lastAccess ) throws CIFSException; /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 26K bytes - Viewed (1) -
src/main/java/jcifs/smb/SmbFile.java
*/ this.fileLocator.updateType(type); this.attributes = attributes; this.createTime = createTime; this.lastModified = lastModified; this.lastAccess = lastAccess; this.size = size; this.isExists = true; if ( loadedAttributes ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)