写一段清理电脑缓存的c语言代码
#include <stdio.h> #include <stdlib.h>
int main() { system("del /q %temp%\"); //清理系统临时文件夹 system("del /q C:\Windows\Temp\"); //清理Windows临时文件夹 system("ipconfig /flushdns"); //清理DNS缓存 printf("缓存清理完成!\n"); //输出提示信息 return 0; }
原文地址: https://www.cveoy.top/t/topic/KIL 著作权归作者所有。请勿转载和采集!