电脑清理系统垃圾文件的文本文件程序是什么?

电脑清理系统垃圾文件的文本文件程序是什么?,第1张

@echo off\x0d\x0a\x0d\x0aecho 正在清除系统垃圾文件,请稍等??\x0d\x0a\x0d\x0adel /f /s /q %systemdrive%\*.tmp\x0d\x0a\x0d\x0adel /f /s /q %systemdrive%\*._mp\x0d\x0a\x0d\x0adel /f /s /q %systemdrive%\*.log\x0d\x0a\x0d\x0adel /f /s /q %systemdrive%\*.gid\x0d\x0a\x0d\x0adel /f /s /q %systemdrive%\*.chk\x0d\x0a\x0d\x0adel /f /s /q %systemdrive%\*.old\x0d\x0a\x0d\x0adel /f /s /q %systemdrive%\recycled\*.*\x0d\x0a\x0d\x0adel /f /s /q %windir%\*.bak\x0d\x0a\x0d\x0adel /f /s /q %windir%\prefetch\*.*\x0d\x0a\x0d\x0ard /s /q %windir%\temp &md %windir%\temp\x0d\x0a\x0d\x0adel /f /q %userprofile%\s\*.*\x0d\x0a\x0d\x0adel /f /q %userprofile%\recent\*.*\x0d\x0a\x0d\x0adel /f /s /q “%userprofile%\local settings\temporary internet files\*.*”\x0d\x0a\x0d\x0adel /f /s /q “%userprofile%\local settings\temp\*.*”\x0d\x0a\x0d\x0adel /f /s /q “%userprofile%\recent\*.*”\x0d\x0a\x0d\x0aecho 清除系统lj完成!\x0d\x0a\x0d\x0aecho. &pause \x0d\x0a\x0d\x0a写好后,另存为.bat文件

#include"stdio.h"

#include"stdlib.h"

main()

{

FILE *fp

char str[80],*p,*head

int n=0

long filelen

loop1: printf("请输入您要用于 *** 作的文件名及其完整路径:\n")

gets(str)

fp=fopen(str,"rb+")

if(fp==NULL)

{

printf("找不到指定文件,要指定新文件吗?(y=是的,要指定新文件\telse=不用了,退出程序)\t")

gets(str)

if((char)tolower((int)str[0])=='y')goto loop1

else exit(0)

}

printf("请输入您要查找并替换的字符(如果输入的字符数量大于1本程序会自动舍去多余的部分)\n")

gets(str)

printf("请输入您要将找到的字符或字符串替换为的字符(自动舍去多余部分)\n")

gets(&str[1])

fseek(fp,0L,2)

filelen=ftell(fp)

fseek(fp,0L,0)

head=(char *)malloc(filelen)

fread(head,filelen,1,fp)

for(p=headp<head+filelen/1Lp++)if(*p==str[0]){*p=str[1]n++}

fseek(fp,0L,0)

fwrite(head,filelen,1,fp)

fclose(fp)

printf("替换已经完成,共替换%d处\n",n)

}

要说纯文本处理的话,那只有记事本和写字板 可在开始菜单的附件里找到(这两个是自带的) 或者直接在运行里打notepad 和 write

如果要说文档编辑的话,还有微软office软件的word和金山公司wps软件的word了


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/10964015.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-12
下一篇 2023-05-12

发表评论

登录后才能评论

评论列表(0条)

保存