summaryrefslogtreecommitdiffstats
path: root/src/ft_f_file.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 16:16:09 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 16:16:09 +0200
commit4dfd892f968fb840eddd5fc192c061a997afa588 (patch)
tree3016314080aa4f8e0a211f278a756753a81231b6 /src/ft_f_file.c
parentFine builtins execution, now norme (diff)
download42-minishell-4dfd892f968fb840eddd5fc192c061a997afa588.tar.gz
42-minishell-4dfd892f968fb840eddd5fc192c061a997afa588.tar.bz2
42-minishell-4dfd892f968fb840eddd5fc192c061a997afa588.tar.xz
42-minishell-4dfd892f968fb840eddd5fc192c061a997afa588.tar.zst
42-minishell-4dfd892f968fb840eddd5fc192c061a997afa588.zip
Very good redirs
Diffstat (limited to 'src/ft_f_file.c')
-rw-r--r--src/ft_f_file.c42
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);
+}