Modify

Opened 21 months ago

Closed 21 months ago

Last modified 21 months ago

#6908 closed defect (duplicate)

Error reading audio files from case sensitive filesystem

Reported by: mdk Owned by: OliverW
Priority: normal Component: Plugin columbuscsv
Version: latest Keywords:
Cc:

Description

When I read a Columbus CSV file from the SD-card (formatted with FAT16) I also get the audio files. But when I try to read them from my disk archive (ext4), I did't get the files. Instead there are errors like:

Open file: /home/michael/src/osm/ColumbusData/11092800.CSV (114175 bytes)
File vox00043 not found!
Fehlende Audiodatei: vox00043

The problem is, that ext4 is case sensitive and the files are named

VOX00043.WAV

and not

vox00043.wav

The reason for this is in ColumbusCSVReader.java line 366

if (isExtMode) {

voxFile = csvLine[14].toLowerCase();

} else {

voxFile = csvLine[9].toLowerCase();

}

Why is there a ".toLowerCase()"?

Attachments (0)

Change History (3)

comment:1 Changed 21 months ago by mdk

Sorry problem with NoScript cause duplicate ticket!

comment:2 Changed 21 months ago by skyper

  • Resolution set to duplicate
  • Status changed from new to closed

comment:3 Changed 21 months ago by anonymous

Closed as duplicate of #6907.

Add Comment

Modify Ticket

Change Properties
<Author field>
Action
as closed .
as The resolution will be set. Next status will be 'closed'.
The resolution will be deleted. Next status will be 'reopened'.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.