一.程序概述完成的任务

1.mypwd列举当前目录的名称。

2.mychdir改变当前目录。

3.mymkdir新建一个目录

4.myrmdir删掉文件夹

5.exit退出类库。

6.myrename将文件或文件夹重命名。

7.mycp复制当前已存在的文件。

8.myfind在指定的目录查找指定的文件或文件夹,并输出绝对路径。

9.mylist列举目录名中全部的目录和文件。

1.mydate显示与设置系统的日期和时间。

11.mycd切换目录

遇见的困难及解决的问题

1.安装的虚拟机不是英文的linux vm,我先是在终端输入“sudoapt-yinstallfcitxfcitx-binfcitx-tablefcitx-table-all”,再输入“sudoapt-yinstallfcitx-config-gtk”安装可视化配置界面;之后用傲游下载安装搜狗输入法(linux版64位),并在ubuntu软件中心安装,再将输入法框架改为fcitx,并下载“languagesupport”中的chinese包,再切换输入法,设置为搜狗

2.未能实现像中学一样可以从桌面推入拖进文件的功能,我先是下了VMwareTOOL,之后将压缩包放桌面,再步入终端,“sudosu”进入超级用户模式,再一步一步cd访问安装,最后重启实现

3.date功能在网上看了好多,但不晓得为何结布光添加就报错

二.概念原理

本次操作系统课程设计使用的语言为C++,包含的头文件大多是Linux下c的函数库。通过调用相关的函数库来实现模拟操作。下边是对一些概念原理的说明:

源程序包含的部份头文件

#include//gettimeoftime/settimeofday的函数
#include//包含获取/转换时间的函数
#include//主要用于一些标准输入输出:cin,cout操作
#include//标准C++函数库,主要用于字符串处理
#include//基本系统数据类型
#include//文件状态
#include//文件操作函数
#include//文件控制
#include//文件树漫游
#include
#include
#include
#include
#include
#include

以上是整个源程序涉及到的一些函数头文件

2.函数概念说明

以下是对程序调用Linuxc函数库的方式说明:

(1).调用getcwd()函数

函数原型:char*getcwd(char*buf,size_tsize);

函数说明:getcwd()会将当前的工作目录绝对路径复制到参数buf所指的显存空间,参数size为buf的空间大小。在调用此函数时,buf所指的显存空间要足够大,若工作目录绝对路径的字符串厚度超过参数size大小,则回值NULL,errno的值则为ERANGE。如果参数buf为NULL,getcwd()会依参数size的大小手动配置显存(使用malloc()),假如参数size也为0,则getcwd()会依工作目录绝对路径的字符串程度来决定所配置的显存大小,进程可以在使用完此字符串后借助free()来释放此空间。

返回值:执行成功则将结果复制到参数buf所指的显存空间,或是返回手动配置的字符串表针。失败返回NULL,错误代码存于errno。

(2).调用opendir()函数

函数原型:DIR*opendir(constchar*name);

函数说明:opendir()拿来打开参数name指定的目录,并返回DIR形态的目录流,和open()类似,接出来对目录的读取和搜索都要使用此返回值。

返回值:成功则返回DIR型态的目录流,打开失败则返回NULL。

(3).调用readdir()函数

函数原型:structdirent*readdir(DIR*dir);

函数说明:readdir()返回参数dir目录流的下个目录步入点。

结构dirent定义如下

struct dirent
{
ino_t d_ino;
ff_t d_off;
signed short int d_reclen;
unsigned char d_type;
har d_name[256;
};

d_ino此目录步入点的inoded_off目录文件开头至此目录步入点的位移d_reclen_name的宽度,不包含NULL字符d_typed_name所指的文件类型d_name文件名返回值:成功则返回下个目录步入点。有错误发生或读取到目录文件尾则返回NULL。附加说明:EBADF参数dir为无效的目录流。

(4).调用closedir()函数

函数原型:*intclosedir(DIRdir);

函数说明:closedir()关掉参数dir所指的目录流。

返回值:关掉成功则返回0,失败返回-1,错误缘由存于errno中。

(5).调用chdir()函数

函数原型:intchdir(constchar*path);

函数说明:chdir()拿来将当前的工作目录改变成以参数path所指的目录。

返回值:执行成功返回0,失败返回-1;

(6).调用mkdir()函数

函数原型:*intmkdir(constcharpathname,mode_tmode);

函数说明:mkdir()函数以mode方法创建一个以参数pathname命名的目录,mode定义新创建目录的权限。

返回值:若目录创建成功,则返回0,否则返回-1;

(7).调用rmdir()函数

函数原型:*int_rmdir(constchardirname);

函数说明:rmdir()函数删掉以参数dirname为命名的目录。

返回值:若目录删掉成功,则返回0,否则返回-1;

(8).调用rename()函数

函数原型:intrename(constchar*oldpath,constchar*newpath);

函数说明:rename()会将参数oldpath所指定的文件名称改为参数newpath所指的文件名称。若newpath所指定的文件已存在,则会被删掉。

返回值:执行成功则返回0,失败返回-1。

(9).调用ftw()函数

表头文件:#include

函数原型:intftw(constchar*dir,int(*fn)(constfile,conststructstatsb,intflag),intdepth)

函数说明:ftw()会从参数dir指定的目录开始,往下一层层地递归式遍历子目录。ftw()会传三个参数给fn(),第一个参数file指向当时所在的目录路径linux vm,第二个参数是sb,为stat结构表针linux,第三个参数为旗标,有下边几种可能值:

FTW_F通常文件FTW_D目录FTW_DNR不可读取的目录,此目录以下将不被遍历FTW_SL符号联接FTW_NS未能取得stat结构数据,有可能是权限问题

最后一个参数depth代表ftw()在进行遍历目录时同时打开的文件数。ftw()在遍长达每一层目录起码须要一个文件描述词,假如遍长达用完了depth所给与的限制数量,整个遍历将因不断地关文件和开文件操作而变得平缓.

假如要结束ftw()的遍历,fn()只需返回一非零位即可,此值同时也会是ftw()的返回值。否则ftw()会试着走完所有的目录,之后返回0.

返回值:遍历中断则返回fn()函数的返回值,全部遍历则返回0,若有错误发生则返回-1

三.详尽设计菜单:在列出菜单之前先把控制台用clear命令消除内容,再进行显示,以保证界面美观,在菜单然后直接调用pwd()函数显示当前工作目录,便捷用户查看当前工作目录。

system("clear");
   cout<<"~~~~~~~~~欢迎来到lotay的命令解释器~~~~~~~~~~"<<endl;
(省略。。。。)
cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
pwd();
cout<<endl;

显示当前所在目录的路径名:这个功能写在pwd()函数中,使用getcwd()函数获取当前目录存进path链表中而且复印在控制台。

char path[100];
    getcwd(path,100);//Get path
cout<<"current directory: "<<path<<endl;

列出指定目录中的所有目录及文件:此功能写在list()函数中,通过传入的目录,用opendir()函数打开目录,获取目录流,而且用readdir()函数读取每一个目录节点,复印出信息,最后closedir()关掉该目录。


DIR* d = opendir(dir.c_str());
    if(d==NULL) {
        return false;
    } else {
	struct dirent *dirent;
        while(dirent=readdir(d)) {
	    cout<<" "<<dirent->d_name;
	}
	closedir(d);
cout<<endl;
        return true;
}

改变当前目录:使用chdir()函数改变当前打开的工作目录,返回0时,改变成功,chdir()函数返回true,否则返回false。

if(chdir(path.c_str())==0) {
        return true;
    } else {
        return false;
}

新建目录:在函数makedir()中调用系统的mkdir函数创建指定目录名的目录,当返回0时创建成功,makedir()函数返回true,否则返回false,创建的目录通常具有所有权限。

if(mkdir(dir.c_str(), S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH)==0) {
        return true;
    } else {
        return false;
}

删掉目录:在deldir()中调用rmdir函数删掉指定目录,返回0时删掉成功,deldir()函数返回true,否则返回false。

if(rmdir(dir.c_str())==0) {
        return true;
    } else {
        return false;
}

重命名:在rename()函数中调用C中的标准函数rename,将旧的目录或文件名改为新的目录或文件名,当返回0时,重命名成功,rename()函数返回true,否则返回false。

if(rename(lastname.c_str(),newname.c_str())==0) {
        return true;
    } else {
        return false;
}

复制文件:先判别文件是否存在,若存在则判定目标文件是否存在,如果早已存在这么便在原先的文件名子后缀加上(1)再复制,加入不存在则直接复制,复制的形式是先调用read()函数从源文件读出内容存进buf链表,接着调用write()函数将内容写进目标文件。

int fo1,fo2;
    char buf[1024];
    fo1=open(existname.c_str(),O_RDONLY);
    if(fo1==-1) {
	
	      return false;
    } else {
	fo2=open(newname.c_str(),O_RDONLY);
	if(fo2!=-1) {
	        int i;
	    cout<<"Overwrite original file??"<<endl;
	    cout<<"----1 is yes,not 1 is no.";
	    cin>>i;
	    if(i!=1) {
		newname+="(1)";
	     }
	     close(fo2);
	}
        fo2=open(newname.c_str(),O_WRONLY|O_CREAT,S_IRWXU);
	int size = read(fo1,buf,sizeof(buf));
	write(fo2,buf,size);
	close(fo1);
	close(fo2);
	return true;
}

查找指定文件和目录:通过调用ftw函数反弹遍历指定目录中的文件,fn是反弹函数,每一次遍历到一个节点,ftw函数就会把节点路径和节点信息以及类型传入fn函数中,同时,把须要查找的文件名子作为全局变量,在fn中判定是否存在而且输出。

ftw(dir.c_str(),fn,500);
int fn(const char *fpath, const struct stat *st, int typeflag) {
    for(int i=strlen(fpath)-1,j=file.length()-1;;i--,j--) {
	if(j==-1&&fpath[i]=='/') {
	    cout<<"  "<<fpath;
	    if(typeflag==FTW_F) cout<<"   FILE"<<endl;
	    else if(typeflag==FTW_D) cout<<"  DIRECTORY"<<endl;
	    num++;
	    break;
	}
	if(fpath[i]=='/') break;
	if(j==-1) break;
	if(fpath[i]!=file[j]) {
	    break;
	} 
    }
    return 0;
}

退出:直接在main函数中返回0。四.完成情况

完成了整个操作系统课程设计的命令行功能基本要求:

1.mypwd列举当前目录的名称。

2.mychdir改变当前目录。

3.mymkdir新建一个目录

4.myrmdir删掉文件夹

5.exit退出命令类库。

6.mycp复制当前已存在的文件。

7.mylist列举目录名中全部的目录和文件。

8.mydate显示与设置系统的日期和时间。

9.mycd切换目录

基本完成了以下几个扩充命令的要求:

1.myrename将文件或文件夹重命名。

2.myfind在指定的目录查找指定的文件或文件夹,并输出绝对路径。

通过测试,以上所有命令都运行正常。整个程序,代码实现简单清晰,没有太复杂的算法。基本上就是对函数的调用实现。运行结果又较好的提示信息,无论是成功错误都提示相应的信息。源代码的注释内容也十分清晰,便捷查看理解函数调用的功能。

五.使用情况

首先步入命令解释权界面

在步入程序会有菜单可供选择,一共有11个功能,但是在菜单下边会有当前工作目录显示在界面上,如右图:

修改当前目录的名子(输入命令2)

新建一个目录(命令3)

删掉一个目录(命令4)

里面是存在该目录的情况,下边是不存在该目录的情况

退出命令类库(命令5)

将文件重命名(命令6)

复制早已存在的文件(命令7)

查找文件

六.设计总结

经验教训

一开始还是应当好好把vmtools装好的,这样可以节省好多试错代码的时间,虽然我对c语言和c++有点混淆,不过好在平常上机也常常有用c++做,只要有思路大约就可以做下来,csdn真是个挺好的学习网站,对Linux我还挺感兴趣,他的界面UI简单美观,操作便捷,还可以学习一些命令代码linux系统命令,觉得敲代码的过程很享受,不过常常一遇到Bug就无从下手了,但是网上的资料也比较零碎,我应当去图书馆系统的瞧瞧馆藏讲解linux的书籍的。回顾整个课设,主要是date哪里花了好多时间,不晓得为何结构体加进去报错,我下去再瞧瞧,希望进一步提高自己的能力。难的地方是假如去理解Linuxc函数库的调用。须要花时间去理解每一个函数的作用和相关参数的作用。刚开始做的时侯,也是不晓得如何开始,之前把问题想得复杂化了,后来通过一步一步实现每位指令,才渐渐找到解决的办法。

实践体会

总的来说,整个课程设计还算比较顺利,由于对Linux操作系统接触得并不多,对一些命令行的实现还不怎样清楚,后来通过查阅资料,发觉Linux确实十分简约好用,我十分喜欢这样的系统。长达十天的时间,把程序设计下来了,也认真写了下此次的文档。觉得通过一段时间的学习,自己的编程能力确实变强了,但还是有许多不足。在程序设计过程中,要学会查看文档,由于好多文档都是英语,这就须要英语好一点。我也在克服查看英语文档的障碍,努力提高自己的英语阅读能力。通过此次课程设计,也让自己拾起了C++这门语言,熟悉了Linux环境下的一些命令操作,而且让我有了极延庆趣去研究Linux,我在接出来的时间里也会使用和学习Linux程序设计。总的来说,觉得不错。

七.参考文献

[1]《教材名称》,主编,出版社,出版时间(教材)

[2]作者.文献题名[J].刊名,年,卷(期):起止页脚.(刊物论文)

[3]作者.文献题名[D].出版地:出版单位,出版年:起止页脚(学位论文)

[4][文献类型/载体类型标示]:[J/OL]网上刊物、[EB/OL]网上电子公告(电子文献)

[5]《Linux程序设计第4版》

[6]《TheGUNCLibraryManual》

代码详情:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include//gettimeoftime/settimeofday的函数
#include//包含获取/转换时间的函数
using namespace std;
//struct tm
//{
//	int tm_sec;//秒
//	int tm_year;//年
//	int tm_mon;//月
//	int tm_mday;//日
//	int tm_hour;//时
//	int tm_min;//分
//	int tm_sec;//秒
//}
//struct timeval
//{
//	_time_t tv_sec;
//	_suseconds_t tv_usec;
//}
//struct timezone
//{
//	int tz_minuteswest;
//	int tz_dsttime;
//}
void pwd()
{
	char path[100];
	getcwd(path,100);
	cout<<"当前目录"<<path<<endl;
}
bool list(string dir)
{
	DIR* d=opendir(dir.c_str());
	if(d==NULL)
	{
		return false;
	}
	else
	{
		struct dirent *dirent;
		while(dirent=readdir(d))
		{
			cout<<" "<<dirent->d_name;
//文件名,文件类型,文件名长
		}
		closedir(d);
		cout<<endl;
		return true;
	}
}
bool changedir(string path)
{
	if(chdir(path.c_str())==0)
	{
		return true;
	}
	else
	{
		return false;
	}
}
bool makedir(string dir)
{
	if(mkdir(dir.c_str(),S_IRWXU|S_IRWXG|S_IROTH|S_IXOTH)==0)
	{
		return true;
	}
	else
	{
		return false;
	}
}
bool deldir(string dir)
{
	if(rmdir(dir.c_str())==0)
	{
		return true;
	}
	else
	{
		return false;
	}
}
bool rename(string lastname,string newname){
	if(rename(lastname.c_str(),newname.c_str())==0)
	{
		return true;
	}
	else
	{
		return false;
	}
}
bool copy(string existname,string newname){
	int fo1,fo2;
	char buf[1024];
	fo1=open(existname.c_str(),O_RDONLY);
	if(fo1==-1)
	{
		return false;
	}
	else
	{
		fo2=open(newname.c_str(),O_RDONLY);
		if(fo2!=-1)
		{
			int i;
			cout<<"是否重新书写原目录 ?"<<endl;
			cout<<"-----1 是,not 1 不是."<<endl;
			cin>>i;
			if(i!=1)
			{
				newname+="(1)";
			}
			close(fo2);
		}
		fo2=open(newname.c_str(),O_WRONLY|O_CREAT,S_IRWXU);
		int size=read(fo1,buf,sizeof(buf));
		write(fo2,buf,size);
		close(fo1);
		close(fo2);
		return true;
	}
}
int num=0;
string file;
int fn(const char *fpath,const struct stat *st,int typeflag)
{
	for(int i=strlen(fpath)-1,j=file.length()-1;;i--,j--)
	{
		if(j==-1&&fpath[i]=='/')
		{
			cout<<" "<<fpath;
			if(typeflag==FTW_F)cout<<" FILE"<<endl;
			else if(typeflag==FTW_D)cout<<" DIRECTORY"<<endl;
			num++;
			break;
		}
		if(fpath[i]=='/')break;
		if(j==-1)break;
		if(fpath[i]!=file[i])
		{
			break;
		}
	}
	return 0;
}
bool find(string dir,string filename)
{
	file=filename;
	ftw(dir.c_str(),fn,500);
	if(num==0)
	{
		return false;
	}
	else
	{
		return true;
	}
}
void cd()
{
	//char buffer[1024];
	//FILE *in,*out;
	//int len;
	//if((in=fopen(dirname1,"r"))==NULL)
	//{
	//	cout<<"这个文件无法打开"<<endl;
	//	exit(1);
	//}
	//if((out=fopen(dirname2,"w"))==NULL)
	//{
	//	cout<<"这个新文件无法打开"<<endl;
	//	exit(1);
	//}
	//while((len=fread(buffer,1,1024,in))>0)
	//{
	//	fwrite(buffer,1,len,out);
	//	memset(buffer,0,1024);
	//}
	//fclose(out);
	//fclose(in);
   char dirname[20];  
   cin>>dirname;
   if(chdir(dirname) == -1)  
   {  
      cout<<"这个文件不存在!"<<endl;  
  
    }  
    else  
    {  
      cout<<"切换文件成功!!!"<<endl;  
     }  
}
//int alllist(char *dirPath)
//{
	//DIR *dir=opendir(dirPath);
	//if(dir==NULL)
	//{
	//	cout<<strerror(errno)<<endl;
	//	return;
	//}
	//chdir(dirPath);
	//struct dirent *ent;
	//while((ent=readdir(dir))!=NULL)
	//{
	//	if(strcmp(ent->d_name,".")==0||strcmp(ent->d_name,"..")==0)
	//	{
	//		continue;
	//	}
	//	struct stat st;
	//	stat(ent->d_name,&st);
	//	if(S_ISDIR(st.st_mode))
	//	{
	//		getFileName(ent->d_name);
	//	}
	//	else
	//	{
	//		cout<d_name<<endl;
	//	}
	//	closedir(dir);
	//	chdir("..");
	//}
//}
long gettimesec(void)
{
	long cursec=0;
	struct timeval curtimesec;
	gettimeofday(&curtimesec,NULL);
	cursec=curtimesec.tv_sec;
	return cursec;
}
void TimeSet(int year,int month,int day,int hour,int min,int sec)
{
	struct tm tptr;
	struct timeval tv;
	tptr.tm_year=year+1900;
	tptr.tm_mon=month+1;
	tptr.tm_mday=day;
	tptr.tm_hour=hour;
	tptr.tm_min=min;
	tptr.tm_sec=sec;
	tv.tv_sec=mktime(&tptr);
	tv.tv_usec=0;
	settimeofday(&tv,NULL);
}
void time()
{
	time_t now;
	//struct tm *timenow;
	time(&now);
	//timenow=localtime(&now);
	//cout<<"本地时间是:"<<a style='color:#0000CC;font-size:16px;' sctime(timenow)<<endl;
}
string datetime(){
//    time_t now = time(0);// 基于当前系统的当前日期/时间
//    tm *ltm = localtime(&now);
 
//    char iyear[50],imonth[50],iday[50],ihour[50],imin[50],isec[50];
//    sprintf(iyear, "%d",1900 + ltm->tm_year );
//    sprintf(imonth, "d", 1 + ltm->tm_mon );
//    sprintf(iday, "d", ltm->tm_mday );
//    sprintf(ihour, "d", ltm->tm_hour );
//    sprintf(imin, "d",  ltm->tm_min);
//    sprintf(isec, "d",  ltm->tm_sec);
 
//    vector sDate{iyear, imonth, iday};
//    vector sTime{ihour, imin, isec};
//    string myDate = boost::algorithm::join(sDate, "-") ;
//    string myTime = boost::algorithm::join(sTime, ":") ;
//    vector sDateTime{myDate, myTime};
//    string myDateTime = boost::algorithm::join(sDateTime, " ") ;
//    return myDateTime;
    time_t timep;//time_t表示的时间转换为没有经过时区转换的UTC时间,是一个struct tm结构指针
    time (&timep);//调用time()方法获取time_t类型的当前时间
    char tmp[64];
    strftime(tmp, sizeof(tmp), "%Y-%m-%d %H:%M:%S",localtime(&timep) );
    //调用strftime()函数格式化localtime(&timep)并把它存在tmp中
    //localtime()函数将timep的指分解成tm结构,并用本地时区表示
    puts(tmp);
}
void menu(){
	system("clear");
	cout<<"~~~~~~~~~~~~~~~~~~~~~~~~欢迎来到lotay的命令解释器~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
	cout<<"1.{mypwd}列出当前目录的名称。"<<endl;
	cout<<"2.{mychdir}改变当前目录。"<<endl;
	cout<<"3.{mymkdir}新建一个目录。"<<endl;
	cout<<"4.{myrmdir}删除文件夹。"<<endl;
	cout<<"5.{exit}退出命令解释器。"<<endl;
	cout<<"6.{myrename}将文件或文件夹重命名。"<<endl;
	cout<<"7.{mycp}复制当前已存在的文件。"<<endl;
	cout<<"8.{myfind}在指定的目录查找指定的文件或文件夹,并输出绝对路径。"<<endl;
	cout<<"9.{mylist}列出目录名中全部的目录和文件。"<<endl;
	cout<<"10.{mydate}显示与设置系统的日期和时间。"<<endl;
	cout<<"11.{mycd}切换目录。"<<endl;
	cout<<"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"<<endl;
	pwd();
	cout<<endl;
}
int main()
{
//struct tm;
system("data");//未修改前时间
TimeSet(2020,12,11,1,30,8);
system("data");//修改后时间
menu();
string s;
while(1){
cout<<"请输入菜单数字:"<<endl;
cin>>s;
if(s=="1")
{
//列出当前目录名
	menu();
	cout<<"请输入当前目录:"<<endl;
	string dir;
	cin>>dir;
		if(!list(dir))
		{
			cout<<"打开失败/没有该目录!"<<endl;
		}
}
else if(s=="2")
{
//改变当前目录
	menu();
	cout<<"请输入指定的文件名或目录名:"<<endl;
	string path;
	cin>>path;
	if(!changedir(path))
	{
		cout<<"打开失败/该目录中不存在!"<<endl;
	}
	else
	{
		cout<<"当前文件已更改"<<path<<endl;
	}
}
else if(s=="3")
{
//新建
	cout<<"请输入一个新的文件名:"<<endl;
	string dir;
	cin>>dir;
	if(!makedir(dir))
	{
		cout<<"创建文件失败!"<<endl;
	}
	else
	{
		cout<<"文件创建成功啦~"<<endl;
	}
}
else if(s=="4")
{
//删除
	menu();
	cout<<"请输入一个已存在的文件名:"<<endl;
	string dir;
	cin>>dir;
	if(!deldir(dir))
	{
		cout<<"文件不存在/删除失败"<<endl;
	}
	else
	{
		cout<<"文件删除成功"<<endl;
	}
}
else if(s=="5")
{
//退出
	menu();
	cout<<"那拜拜啦呀,欢迎下次再来嘻嘻!"<<endl;
	return 0;
}
else if(s=="6")
{
//重命名
	menu();
	string lastname,newname;
	cout<<"请输入旧的文件名/目录名:"<<endl;
	cin>>lastname;
	cout<<"请输入新的文件名/目录名:"<<endl;
	cin>>newname;
	if(!rename(lastname,newname))
	{
		cout<<"重命名失败啦哦!"<<endl;
	}
	else{
		cout<<"耶!重命名成功啦呀~"<<endl;
	}
}
else if(s=="7")
{//复制
	menu();
	string existname,newname;
	cout<<"请输入一个已存在的文件名或目录名:"<<endl;
	cin>>existname;
	cout<<"请输入一个新的文件名或目录名(用来存放复制的数据):"<<endl;
	cin>>newname;
	if(!copy(existname,newname))
	{
		cout<<"啊哦,复制失败啦耶!"<<endl;
	}
	else
	{
		cout<<"复制成功啦呀!"<<endl;
	}
}
else if(s=="8")
{//查找
	menu();
	string dir,filename;
	cout<<"请输入目录名:"<<endl;
	cin>>dir;
	cout<<"请输入目录名或文件名:"<<endl;
	cin>>filename;
	if(!find(dir,filename))
	{
		cout<<"查找失败!"<<endl;
	}
}
else if(s=="9")
{
//列出目录中全部文件和目录
	menu();
	string dirpath;
	cout<<"请输入需要遍列的目录名:"<<endl;
	cin>>dirpath;
	list(dirpath);
	//getFileName(*dirpath);
	//myls();
}
else if(s=="10")
{
//显示与设置时间与日期
	menu();
	int choose=0;
	cout<<"选择显示时间请输入1,选择设置时间请输入2"<<endl;
	cout<<"-----1 显示,2 设置."<<endl;
	cin>>choose;
	if(choose=1)
	{
		 datetime();
	}
	if(choose=2)
	{
		int y,mon,d,h,m,s;
		cout<<"请依次输入'年 月 日 时 分 秒'"<<endl;
		cin>>y>>mon>>d>>h>>m>>s;
		TimeSet(y,mon,d,h,m,s);
		cout<<"设置成功"<<endl;
	}
	else
	{
		cout<<"只能输入‘1’或‘2’啦!不要输入其他的哦"<<endl;
	}
}
else if(s=="11")
{
//切换目录
	menu();
	cd();
//cout<<"请输入要切换的目录名"<<endl;
//cin>>dir;
}
	else
	{
		menu();
		cout<<"输入出错啦呀,请再输入一次哦!"<<endl;
	}
}
	return 0;
}

本文原创地址://gulass.cn/lcxgswcrwydk.html编辑:刘遄,审核员:暂无