Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mktime (0.16 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    
        void setPathInformation( int attrs, long ctime, long mtime ) throws SmbException {
            int f, dir;
    
            exists();
            dir = attributes & ATTR_DIRECTORY;
    
            f = open0( O_RDONLY, FILE_WRITE_ATTRIBUTES,
                    dir, dir != 0 ? 0x0001 : 0x0040 );
            send( new Trans2SetFileInformation( f, attrs | dir, ctime, mtime ),
                    new Trans2SetFileInformationResponse() );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbFile.java

                            new Trans2SetFileInformationResponse(th.getConfig()),
                            RequestParam.NO_RETRY);
                    }
                }
                else {
                    if ( ctime != 0 || atime != 0 ) {
                        throw new SmbUnsupportedOperationException("Cannot set creation or access time without CAP_NT_SMBS");
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top