Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Windows
»
[SOLVED] Delete to recycle bin
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
[SOLVED] USB connected de...
by
Username
[
Today
at 12:00:47 am]
TThreadID on Mac - insigh...
by
AlanTheBeast
[June 28, 2022, 11:05:32 pm]
MySQL or MariaDB
by
Zvoni
[June 28, 2022, 11:00:54 pm]
How to install a new prop...
by
wp
[June 28, 2022, 10:55:53 pm]
Can Absolute be used on s...
by
MarkMLl
[June 28, 2022, 10:14:39 pm]
Populating and manipulati...
by
Handoko
[June 28, 2022, 09:15:29 pm]
Training program
by
pascal111
[June 28, 2022, 08:40:59 pm]
SOLVED Pack Files into on...
by
DreamVB
[June 28, 2022, 08:38:56 pm]
Array of Record as Proper...
by
Warfley
[June 28, 2022, 07:36:30 pm]
Center the text verticall...
by
ASerge
[June 28, 2022, 07:15:28 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] Delete to recycle bin (Read 730 times)
pcurtis
Hero Member
Posts: 939
[SOLVED] Delete to recycle bin
«
on:
February 06, 2022, 05:25:59 pm »
How can I delete to the recycle bin?
«
Last Edit: February 06, 2022, 06:17:17 pm by pcurtis
»
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
rvk
Hero Member
Posts: 4676
Re: Delete to recycle bin
«
Reply #1 on:
February 06, 2022, 05:58:50 pm »
Code: Pascal
[Select]
[+]
[-]
uses
ShellApi
;
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
begin
SHEmptyRecycleBin
(
Self
.
Handle
,
''
,
SHERB_NOCONFIRMATION
)
;
end
;
Possible flags:
SHERB_NOCONFIRMATION
SHERB_NOPROGRESSUI
SHERB_NOSOUND
Logged
pcurtis
Hero Member
Posts: 939
Re: Delete to recycle bin
«
Reply #2 on:
February 06, 2022, 06:09:17 pm »
How to DELETE TO not empty, but also good to know.
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
rvk
Hero Member
Posts: 4676
Re: Delete to recycle bin
«
Reply #3 on:
February 06, 2022, 06:14:52 pm »
Quote from: pcurtis on February 06, 2022, 06:09:17 pm
How to DELETE TO not empty, but also good to know.
Ah, ok, I misread.
Code: Pascal
[Select]
[+]
[-]
uses
ShellApi
;
procedure
DeleteFileToRecycleBin
(
aFile
:
PChar
)
;
var
fileOpStruct
:
TSHFileOpStruct
;
begin
fileOpStruct
.
Wnd
:
=
0
;
fileOpStruct
.
wFunc
:
=
FO_DELETE
;
fileOpStruct
.
pFrom
:
=
aFile
;
fileOpStruct
.
fFlags
:
=
FOF_ALLOWUNDO
+
FOF_NOCONFIRMATION
;
SHFileOperation
(
fileOpStruct
)
;
end
;
Logged
pcurtis
Hero Member
Posts: 939
Re: Delete to recycle bin
«
Reply #4 on:
February 06, 2022, 06:16:26 pm »
Thanks.
Logged
Windows 10 20H2
Laz 2.2.0
FPC 3.2.2
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Operating Systems
»
Windows
»
[SOLVED] Delete to recycle bin
TinyPortal
© 2005-2018