diff options
Diffstat (limited to 'src/ft_f_file.c')
-rw-r--r-- | src/ft_f_file.c | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/ft_f_file.c b/src/ft_f_file.c new file mode 100644 index 0000000..53e0c8b --- /dev/null +++ b/src/ft_f_file.c @@ -0,0 +1,42 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_f_file.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ +/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ +/* */ +/* ************************************************************************** */ + +#include <libft.h> +#include <stdlib.h> +#include <errno.h> +#include <unistd.h> +#include "ft_s_lcom.h" +#include "ft_s_destroy.h" + +void + ft_f_file(const char path[], + t_msh *msh) +{ + if (errno == ENOENT) + { + ft_dprintf(STDERR_FILENO, + "minishell: %s: No such file or directory\n", path); + } + else if (errno == EACCES) + { + ft_dprintf(STDERR_FILENO, + "minishell: %s: Permission denied\n", path); + } + else if (errno == EISDIR) + { + ft_dprintf(STDERR_FILENO, + "minishell: %s: Is a directory\n", path); + } + ft_lcom_clear(&msh->curr); + ft_s_destroy(msh); + exit(1); +} |