blob: 3cf7b8fdaafc29c13d72a922932c2f3e08f8fd63 (
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 <klocale.h>
#include <kmessagebox.h>
#include <kurl.h>
#include <kio/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.").tqarg( url.prettyURL() ),
i18n("Not Deleted"));
return false;
}
KIO::NetAccess::del( url, 0L );
return true;
}
else
KMessageBox::information( 0L,
i18n("Not deleting\n%1\nas it is not a local"
" file.").tqarg( url.prettyURL() ),
i18n("Not Deleted") );
return false;
}
|