2 Wrapper for routines to notify the
3 tree about the changes made to the directory
6 Copyright (C) 2011-2024
7 Free Software Foundation, Inc.
12 Slava Zanko <slavazanko@gmail.com>, 2013
14 This file is part of the Midnight Commander.
16 The Midnight Commander is free software: you can redistribute it
17 and/or modify it under the terms of the GNU General Public License as
18 published by the Free Software Foundation, either version 3 of the License,
19 or (at your option) any later version.
21 The Midnight Commander is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program. If not, see <http://www.gnu.org/licenses/>.
32 * \brief Source: wrapper for routines to notify the
33 * tree about the changes made to the directory
42 #include "lib/global.h"
45 #include "lib/vfs/vfs.h"
49 /*** global variables ****************************************************************************/
51 /*** file scope macro definitions ****************************************************************/
53 /*** file scope type declarations ****************************************************************/
55 /*** forward declarations (file scope functions) *************************************************/
57 /*** file scope variables ************************************************************************/
59 /* --------------------------------------------------------------------------------------------- */
60 /*** file scope functions ************************************************************************/
61 /* --------------------------------------------------------------------------------------------- */
64 my_mkdir_rec (const vfs_path_t
*vpath
, mode_t mode
)
69 if (mc_mkdir (vpath
, mode
) == 0)
74 /* FIXME: should check instead if vpath is at the root of that filesystem */
75 if (!vfs_file_is_local (vpath
))
78 if (strcmp (vfs_path_as_str (vpath
), PATH_SEP_STR
) == 0)
84 q
= vfs_path_append_new (vpath
, "..", (char *) NULL
);
85 result
= my_mkdir_rec (q
, mode
);
86 vfs_path_free (q
, TRUE
);
89 result
= mc_mkdir (vpath
, mode
);
94 /* --------------------------------------------------------------------------------------------- */
95 /*** public functions ****************************************************************************/
96 /* --------------------------------------------------------------------------------------------- */
99 my_mkdir (const vfs_path_t
*vpath
, mode_t mode
)
103 result
= my_mkdir_rec (vpath
, mode
);
107 /* --------------------------------------------------------------------------------------------- */
110 my_rmdir (const char *path
)
115 vpath
= vfs_path_from_str_flags (path
, VPF_NO_CANON
);
116 /* FIXME: Should receive a Wtree! */
117 result
= mc_rmdir (vpath
);
118 vfs_path_free (vpath
, TRUE
);
122 /* --------------------------------------------------------------------------------------------- */