[求助]如何编一个小程序将.prt2和.prt.prt1该为.prt1
如何编一个小程序将副档名.prt2和.prt.prt1该为.prt1
假设你要改的文件路径是 c:\he.prt.prt1
想把它改为he.prt1
#include <stdlib.h>
int main(void)
{
system("ren c:\\he.prt.prt1 he.prt1");
return 0;
}
这样就可以了
system函数可以调用DOS命令,ren是DOS的改名命令