system函数是执行shell命令,在windows下就是将命令交给DOS或cmd.exe去执行。如果要改变c:\windows\下文件名为myfile.txt文件为只读属性,可以执行:
system("attrib +r c:\windows\myfile.txt");
注:用VC++编写源程序时,system应该写为System
system函数是执行shell命令,在windows下就是将命令交给DOS或cmd.exe去执行。如果要改变c:\windows\下文件名为myfile.txt文件为只读属性,可以执行:
system("attrib +r c:\windows\myfile.txt");
注:用VC++编写源程序时,system应该写为System