remove-指定创建和删除文件
remove
/*
Linux API:getotp\open\mkdir\rmdir
function:选择参数实现创建对应文件和删除功能
*/
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
// 函数声明
void open_func(const char *fileName);
void remove_func(const char *fileName);
// 主函数
int main(int argc, char *argv[])
{
extern char * optarg; // 获取功能参数后面的数据参数
int opt;
char *optstring = "m:r:"; // 一个表示必须要参数,两个表示可有可无
// 参数可有可无,必须是紧跟参数;必须要有参数de可以加空格
for (int i = 0; i < argc; i++)
{
printf("argv[%d] : %s\n", i, argv[i]);
}
puts("------------");
putchar('\n');
while ((opt = getopt(argc, argv, optstring)) != -1)
{
switch (opt)
{
case 'm':
open_func(optarg);
break;
case 'r':
remove_func(optarg);
break;
default:
printf("option:%c\n", opt);
break;
}
}
exit(EXIT_SUCCESS);
}
// 用open函数创建文件
void open_func(const char *fileName)
{
printf("open func arg is %s.\n", fileName);
int fd;
fd = open(fileName, O_RDWR | O_CREAT);
if (fd < 0)
{
perror("Error open");
exit(EXIT_FAILURE);
}
puts("open menu:");
system("ls -al");
}
// 删除指定文件
void remove_func(const char *fileName)
{
int ret;
ret = remove(fileName);
if (ret < 0)
{
perror("Error remove");
exit(EXIT_FAILURE);
}
puts("remove menu:");
system("ls -al");
}
makefile
target=cshell
CC=gcc
CFLAGS=-Wall -g
$(target):code.o
$(CC) -o $(target) code.o $(CFLAGS)
code.o:code.c
$(CC) -c code.c $(CFLAGS)
.PHONY: clean all
clean:
rm -f *.o
rm -f $(target)