Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Dir (0.11 sec)

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

                        FILE_WRITE_ATTRIBUTES,
                        FILE_SHARE_READ | FILE_SHARE_WRITE,
                        dir,
                        dir != 0 ? 0x0001 : 0x0040) ) {
                        th.send(
                            new Trans2SetFileInformation(th.getConfig(), f.getFid(), attrs | dir, ctime, mtime, atime),
                            new Trans2SetFileInformationResponse(th.getConfig()),
    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)
  2. 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