码迷,mamicode.com
首页 > 系统相关 > 详细

再一个 可以交互使用的程序   运行环境 linux   进程程序

时间:2016-07-15 17:38:13      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:wz wzzx

#include <stdio.h>
#include<string.h>
#include <time.h>
#include <sys/stat.h>
#include<sys/types.h>
#include<unistd.h>
 
int main(void)
{
    time_t now;
    struct tm *tm_now;
    char    dt[200]; 
     char x=0;
    time(&now);
    tm_now = localtime(&now);
    strftime(dt, 200, "%x %X %Y-%m-%d", tm_now); 
    printf("now datetime : %s\n", dt); 
     char *s = strtok(dt," ");
          s = strtok(NULL," ");
          s = strtok(NULL," ");
         const char *str = s; 
         mkdir(str,0777);
      puts("输入 X 开始移动文件夹");  
     x=getchar();
    if(x!=0)
      {
	 pid_t pid = fork();
	 if(pid == 0)
	{
		execlp("mv","mv",str,"./pass",NULL);
		return 0;
	} 
	else
	{
		printf("文件已移动\n");
	}
	 // execlp("mv","mv",str,"./pass",NULL);   //  method 1

      }
    return 0;
}

/*#include<stdio.h> 
#include<time.h> 
int main()
{ 
int seconds= time((time_t*)NULL); 
printf("%d\n",seconds);
return 0;
}
*/


再一个 可以交互使用的程序   运行环境 linux   进程程序

标签:wz wzzx

原文地址:http://wzsts.blog.51cto.com/10251779/1826654

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!