Fixed: #1455 Bad changes in revision 48a37af6954c

hg/feature/gsoc2012-fabien
kaetemi 13 years ago
parent fab5ddfd74
commit b1bfd3da01

@ -472,9 +472,11 @@ bool CRyzomFileRetrieverImplementation::downloadBackupFiles(const CSString& shar
continue; continue;
// generate a local filename for the downloaded file // generate a local filename for the downloaded file
CSString localFileName= NLMISC::CPath::standardizePath(localDirectory)+(fileName+"_"+fdc[i].FileName); CSString fdcFileNameUnderscore = fdc[i].FileName;
localFileName = localFileName.replace("/","_"); fdcFileNameUnderscore = fdcFileNameUnderscore.replace("/","_");
localFileName = localFileName.replace(".","_"); CSString localFileNameWithoutPath = fileName + "_" + fdcFileNameUnderscore;
localFileNameWithoutPath = localFileNameWithoutPath.replace(".","_");
CSString localFileName = NLMISC::CPath::standardizePath(localDirectory) + localFileNameWithoutPath;
nlinfo("Requesting file download: REMOTE:%s => LOCAL:%s",fdc[i].FileName.c_str(),localFileName.c_str()); nlinfo("Requesting file download: REMOTE:%s => LOCAL:%s",fdc[i].FileName.c_str(),localFileName.c_str());
// put in a request for the file to be retrieved // put in a request for the file to be retrieved

Loading…
Cancel
Save