CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Deleting A file

  1. #1
    Guest

    Deleting A file

    Hello,

    Is there a function that takes path\filename as params and deletes that file from your disk. If not, could I get a hint as to where to look for info.

    Anyone,
    Anyone,


    Later and Thanks,
    Jesus


  2. #2
    Join Date
    May 1999
    Location
    Antwerp, Belgium
    Posts
    136

    Re: Deleting A file

    You can use the remove function. (stdio.h)


  3. #3
    Join Date
    May 1999
    Posts
    69

    Re: Deleting A file

    Use DeleteFile(). It's a Win32 function


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured