I assume CyberGhost is right. First you have to delete the content of the folder. You can look up 'FindFirst' in the Delphi help for some help how to get the content of a folder.
Regards
J
Main Topics
Browse All Topicshow do i code to delete a folder irregardless of whether it has stuff in it or not ?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Maybe this one is helpful.
http://www.experts-exchang
Hi,
Try this:
uses shellapi;
procedure DeleteTree(Dir: String);
var
T:TSHFileOpStruct;
X: Integer;
begin
with T do
begin
Wnd:=0;
wFunc:=FO_DELETE;
pFrom:=PChar(Dir);
pTo:=nil;
{ with next line - no recycle bin }
// fFlags:=FOF_NOCONFIRMATION
end;
SHFileOperation(T);
end;
Usage:
DeleteTree('d:\Temp');
Regards, Geo
Also try this one:
procedure DeleteTree(Dir: string);
var
Rec: TSearchRec;
begin
if Dir[Length(Dir)] <> '\' then
Dir:= Dir + '\';
if FindFirst(Dir + '*.*', faAnyFile, Rec) = 0 then
repeat
if (Rec.Name <> '.') and (Rec.Name <> '..') then
if Rec.Attr and faDirectory > 0 then
DeleteTree(Dir + Rec.Name)
else
DeleteFile(Dir + Rec.Name);
until FindNext(Rec) <> 0;
RemoveDir(ExtractFileDir(D
FindClose(Rec);
end;
Regards, Geo
Business Accounts
Answer for Membership
by: CyberGhostPosted on 2003-03-13 at 01:21:29ID: 8126352
Maybe there is any API function in Windows that allow this.
But I am not sure. You can however use a for statement to determine if there is something in your directory and then delete one by one file/dir. Only if it is empty Windows will allow you to delete it.
If some1 know othe (better) way, plz let us know...