Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for dir (0.17 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() );
            close( f, 0L );
    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)
Back to top