- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
bool Pl::load(QString &path){
if(path.isEmpty()){
return false;
}
QFile file(path);
if(!file.exists()){
return false;
}
file.open(QIODevice::ReadOnly | QIODevice::Text);
file.setTextModeEnabled(true);
if(!file.isOpen()){
return false;
}
QString str;
QString title;
while(file.bytesAvailable() > 0){
str = QString::fromUtf8(file.readLine(1024).trimmed());
if(str.isEmpty()){
continue;
}
else{
if(str.at(0) == '#' && title.isEmpty()){
if(str.left(10) == "#EXTINF:0,"){
title = str.mid(10);
}
else{
title = "";
}
}
}
if(this->addTrack(str, title)){
title = "";
}
else{
QUrl _u(str);
if(this->addURL(_u, title)){
title = "";
}
}
}
file.close();
return true;
}
Dummy00001 07.08.2010 15:38 # 0
0x457845 07.08.2010 16:41 # +1
cutwater 07.08.2010 20:03 # 0
да заприметил еще неконстантную ссылку path
del 10.08.2010 08:21 # 0
> file.setTextModeEnabled(true);
QT не знаю, но есть подозрение, что вторая строка избыточна, тк файл уже открыт в текстовом режиме в первой.