Date: Thu, 28 Jan 1999 08:41:11 +0530 (IST) From: "Raju K.V" X-Sender: rajukv AT tagore To: djgpp AT delorie DOT com Subject: Re: How do you delete files on disk with djgpp ? In-Reply-To: <199901271144.GAA25238@delorie.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com there is a function called remove to remove files from disk. use it as remove(filename); where filename is the name of the file to be deleted. On Wed, 27 Jan 1999, Benjamin Downs wrote: > Hi, > > I'm trying to delete a file on a hard disk from within a c program. There > seems to be plenty of support for creating / appending to files and > setting their length to 0, but not much in the way of deleting it when > you're finished. > > Any comments appreciated, > > ben DOT downs AT dial DOT pipex DOT com > >