Fixed: #1455 Bad changes in revision 48a37af6954c
This commit is contained in:
parent
acab58a3b9
commit
5add0ca372
1 changed files with 5 additions and 3 deletions
|
@ -472,9 +472,11 @@ bool CRyzomFileRetrieverImplementation::downloadBackupFiles(const CSString& shar
|
|||
continue;
|
||||
|
||||
// generate a local filename for the downloaded file
|
||||
CSString localFileName= NLMISC::CPath::standardizePath(localDirectory)+(fileName+"_"+fdc[i].FileName);
|
||||
localFileName = localFileName.replace("/","_");
|
||||
localFileName = localFileName.replace(".","_");
|
||||
CSString fdcFileNameUnderscore = fdc[i].FileName;
|
||||
fdcFileNameUnderscore = fdcFileNameUnderscore.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());
|
||||
|
||||
// put in a request for the file to be retrieved
|
||||
|
|
Loading…
Reference in a new issue