You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kget/safedelete.cpp

36 lines
948 B

#include <tdelocale.h>
#include <tdemessagebox.h>
#include <kurl.h>
#include <tdeio/netaccess.h>
#include <tqfileinfo.h>
#include "safedelete.h"
bool SafeDelete::deleteFile( const KURL& url )
{
if ( url.isLocalFile() )
{
TQFileInfo info( url.path() );
if ( info.isDir() )
{
KMessageBox::information(0L,
i18n("Not deleting\n%1\nas it is a "
"directory.").arg( url.prettyURL() ),
i18n("Not Deleted"));
return false;
}
TDEIO::NetAccess::del( url, 0L );
return true;
}
else
KMessageBox::information( 0L,
i18n("Not deleting\n%1\nas it is not a local"
" file.").arg( url.prettyURL() ),
i18n("Not Deleted") );
return false;
}