2、ows.h>#defineSIZEOFBUFFER256*1024Lvoidmain(){do{printf("t微型命令解釋程序主菜單");printf("---------------------------------------");printf("t1.cdir顯示");printf("t2.ccopy復制");printf("t3.cerase刪除");printf("t4.Cdis輸入字符");printf("t5.Cend結束");printf("----------------------------
3、-----------");printf("請選擇(1~5):");intch;scanf("%d",&ch);switch(ch){case1:system("cls");//清屏printf("cdir表示無參數:查看當前所在目錄的文件和文件夾");struct_finddata_tfa;longfHandle;if((fHandle=_findfirst("*",&fa))==-1L)//當前文件夾目錄{printf("當前目錄下沒有txt文件");}elsedo{printf("找到文件:%s",fa.name);}while(_
4、findnext(fHandle,&fa)==0);_findclose(fHandle);break;case2:system("cls");FILE*in,*out;charch,inflie[99],outfile[99];printf("輸入讀入文件的名字:");scanf("%s",inflie);printf("輸入輸出文件的名字:");scanf("%s",outfile);//避免接收上一個字符串輸入的回車if((in=fopen(inflie,"r"))==NULL)//打開方式為r,文件不存在則出錯{printf("error");}
5、out=fopen(outfile,"w");//這種打開方式,如果文件不存在則自動新建while(!feof(in)){ch=fgetc(in);//文件讀取是fgetc,而不是getcputc(ch,out);}fclose(in);fclose(out);break;case3:system("cls");printf("cerase文件名:刪除文件。");charname[500];//定義一個字符串printf("輸入要刪除文件的名稱:");scanf("%s",&name);if(remove(name))//刪除文件printf("找不到:
6、%s文件,無法刪除!",name);elseprintf("%s文件已刪除",name);break;case4:system("cls");printf("Cdis字符串:顯示該字符串");chara[100];scanf("%s",&a);printf("輸入的字符串為:%s",a);break;case5:printf("Cend退出:退出微型命令解釋程序");exit(0);break;default:printf("輸入錯誤");break;}}while(1);}一、流程圖開始輸入字符串數組i=0;i<5;i++否是輸入錯
7、誤循環(huán)過程調用系統(tǒng)命令結束四、運行截圖1.顯示界面2.輸入選項:13.輸入選項:2復制1111.docx文件,輸出1.txt4.輸入選項:3刪除1.txt文件5.輸入選項:46.輸入顯示符:123abc五、主要實踐教學條件lIBM586以上微型計算機及其兼容機。lWindowsxp版本.lVC++