Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to delete file with remove() function in C

2 Answers

0 votes
#include <stdio.h> 
 
int main(void)
{
    int rv;
    char file_name[30] = "d:\\test.txt";
   
    rv = remove(file_name);
 
    if (rv == 0)
        printf("%s file deleted.\n", file_name);
    else
        printf("Unable to delete the file\n");
  
    return 0;
}


answered Sep 8, 2014 by avibootz
0 votes
#include <stdio.h>
   
int main(void)
{
	if (remove("d:\\data.txt" ) != 0)
		perror("Error");
	else
		puts("OK");
	
    return 0;
}
  
/*
run:
  
OK

*/

 



answered May 6, 2016 by avibootz

Related questions

2 answers 220 views
2 answers 242 views
242 views asked Aug 13, 2015 by avibootz
1 answer 162 views
162 views asked Jun 8, 2018 by avibootz
2 answers 179 views
179 views asked Nov 26, 2018 by avibootz
1 answer 125 views
...