blob: 6ee9ec15d59f511337514b3c9dcdfabb5c945812 (
plain)
1
2
3
4
5
6
7
8
9
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
|
#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;
}
|