moviebrowser.cpp: delFile: revert to unlink()

Origin commit data
------------------
Branch: ni/coolstream
Commit: 41f365f308
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-06-16 (Sat, 16 Jun 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2012-06-16 11:30:24 +02:00
parent 37a826a5a2
commit 8f4a18acf5

View File

@@ -2575,10 +2575,10 @@ bool CMovieBrowser::delFile_vlc(CFile& /*file*/)
bool CMovieBrowser::delFile_std(CFile& file)
{
bool result = true;
char buf[FILENAME_MAX]={0};
snprintf(buf,sizeof(buf), "nice -n 20 rm -f \"%s\" &", file.Name.c_str());
system(buf);
int errno = unlink(file.Name.c_str());
TRACE(" delete file: %s\r\n",file.Name.c_str());
if(errno)
result = false;
return(result);
}