Drizzled Public API Documentation

my_delete.cc
1 /* Copyright (C) 2000 MySQL AB
2 
3  This program is free software; you can redistribute it and/or modify
4  it under the terms of the GNU General Public License as published by
5  the Free Software Foundation; version 2 of the License.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  GNU General Public License for more details.
11 
12  You should have received a copy of the GNU General Public License
13  along with this program; if not, write to the Free Software
14  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
15 
16 #include <config.h>
17 
18 #include <drizzled/internal/my_sys.h>
19 #include <drizzled/error.h>
20 
21 namespace drizzled {
22 namespace internal {
23 
24 int my_delete(const char *name, myf MyFlags)
25 {
26  int err= unlink(name);
27  if (err == -1)
28  {
29  errno= errno;
30  if (MyFlags & (MY_FAE + MY_WME))
31  my_error(EE_DELETE, MYF(ME_BELL + ME_WAITTANG + (MyFlags & ME_NOINPUT)), name, errno);
32  }
33  else if ((MyFlags & MY_SYNC_DIR) && my_sync_dir_by_file(name, MyFlags))
34  err= -1;
35  return err;
36 } /* my_delete */
37 
38 } /* namespace internal */
39 } /* namespace drizzled */