Search code examples
filedelphidelphi-xe2delete-file

How do I delete a file?


I need to delete a picture from a folder where pictures are stored. For example, a file in the C:\Milk\Pictures folder. How do I do this?


Solution

  • Using the SysUtils function DeleteFile:

    if DeleteFile(FileName) then
      // File deleted;
    

    SysUtils is usually included by default. In XE2, if you have to add it you may have to use System.SysUtils because of new namespace rules.