1 /*@ S-nail - a mail user agent derived from Berkeley Mail.
2 *@ Path and directory related operations.
4 * Copyright (c) 2000-2004 Gunnar Ritter, Freiburg i. Br., Germany.
5 * Copyright (c) 2012 - 2018 Steffen (Daode) Nurpmeso <steffen@sdaoden.eu>.
8 * Copyright (c) 1980, 1993
9 * The Regents of the University of California. All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 #ifndef HAVE_AMALGAMATION
43 n_is_dir(char const *name
, bool_t check_access
){
48 if((rv
= (stat(name
, &sbuf
) == 0))){
49 if((rv
= (S_ISDIR(sbuf
.st_mode
) != 0)) && check_access
){
53 if(check_access
!= TRUM1
)
55 rv
= (access(name
, mode
) == 0);
63 n_path_mkdir(char const *name
){
69 if(!mkdir(name
, 0777))
74 /* Try it recursively */
78 if((vp
= strrchr(name
, '/')) != NULL
){ /* TODO magic dirsep */
79 while(vp
> name
&& vp
[-1] == '/')
81 vp
= savestrbuf(name
, PTR2SIZE(vp
- name
));
88 rv
= ((e
== n_ERR_EXIST
|| e
== n_ERR_NOSYS
) && !stat(name
, &st
) &&
96 n_path_rm(char const *name
){
101 if(stat(name
, &sb
) != 0)
103 else if(!S_ISREG(sb
.st_mode
))
106 rv
= (unlink(name
) == 0);
118 if ((cw
->cw_fd
= open(".", O_RDONLY
)) == -1)
120 if (fchdir(cw
->cw_fd
) == -1) {
136 if (!fchdir(cw
->cw_fd
))
143 cwrelse(struct cw
*cw
)
150 #else /* !HAVE_FCHDIR */
157 if (getcwd(cw
->cw_wd
, sizeof cw
->cw_wd
) != NULL
&& !chdir(cw
->cw_wd
))
169 if (!chdir(cw
->cw_wd
))
176 cwrelse(struct cw
*cw
)
182 #endif /* !HAVE_FCHDIR */