How to rename file in C

1 Answer

0 votes
#include <stdio.h>
   
int main(int argc, char **argv) 
{ 
    if ( rename("d:\\data.bin", "d:\\data_new_name.bin") )
        perror(NULL);
    else
        printf("rename success");
    
    return 0;
}
   
/*
  
run:
   
rename success

*/

 



answered Aug 25, 2015 by avibootz
edited Aug 26, 2015 by avibootz

Related questions

1 answer 173 views
173 views asked Jul 12, 2020 by avibootz
1 answer 209 views
209 views asked Jun 9, 2018 by avibootz
1 answer 130 views
130 views asked Aug 22, 2023 by avibootz
1 answer 222 views
222 views asked Mar 10, 2020 by avibootz
1 answer 240 views
1 answer 216 views
216 views asked Aug 26, 2015 by avibootz
2 answers 292 views
292 views asked Aug 26, 2015 by avibootz
...