Changeset 107


Ignore:
Timestamp:
08/28/07 20:52:46 (4 years ago)
Author:
saua
Message:

Search for "*.bbt*" instead of "*.bbt" to find "track.bbt.rem". The BlackBerry? OS seems to create .rem-files when encryption is enabled on the SD Card. Those file are encrypted and decrypted on the fly when Java applications write/read them. Fixes #43

File:
1 edited

Legend:

Unmodified
Added
Removed
  • bbtracker/trunk/src/org/bbtracker/mobile/FileTrackStore.java

    r88 r107  
    2323                        final Vector result = new Vector(); 
    2424                        connection = (FileConnection) Connector.open("file:///" + dir, Connector.READ); 
    25                         final Enumeration list = connection.list("*" + EXTENSION, true); 
     25                        final Enumeration list = connection.list("*" + EXTENSION + "*", true); 
    2626                        while (list.hasMoreElements()) { 
    2727                                final String file = (String) list.nextElement(); 
Note: See TracChangeset for help on using the changeset viewer.