Import BSDDB 4.7.25 (as of svn r89086)
This commit is contained in:
43
os_windows/os_mkdir.c
Normal file
43
os_windows/os_mkdir.c
Normal file
@@ -0,0 +1,43 @@
|
||||
/*-
|
||||
* See the file LICENSE for redistribution information.
|
||||
*
|
||||
* Copyright (c) 1997,2008 Oracle. All rights reserved.
|
||||
*
|
||||
* $Id: os_mkdir.c 63573 2008-05-23 21:43:21Z trent.nelson $
|
||||
*/
|
||||
|
||||
#include "db_config.h"
|
||||
|
||||
#include "db_int.h"
|
||||
|
||||
/*
|
||||
* __os_mkdir --
|
||||
* Create a directory.
|
||||
*/
|
||||
int
|
||||
__os_mkdir(env, name, mode)
|
||||
ENV *env;
|
||||
const char *name;
|
||||
int mode;
|
||||
{
|
||||
DB_ENV *dbenv;
|
||||
_TCHAR *tname;
|
||||
int ret;
|
||||
|
||||
dbenv = env == NULL ? NULL : env->dbenv;
|
||||
|
||||
if (dbenv != NULL &&
|
||||
FLD_ISSET(dbenv->verbose, DB_VERB_FILEOPS | DB_VERB_FILEOPS_ALL))
|
||||
__db_msg(env, "fileops: mkdir %s", name);
|
||||
|
||||
/* Make the directory, with paranoid permissions. */
|
||||
TO_TSTRING(env, name, tname, ret);
|
||||
if (ret != 0)
|
||||
return (ret);
|
||||
RETRY_CHK(!CreateDirectory(tname, NULL), ret);
|
||||
FREE_STRING(env, tname);
|
||||
if (ret != 0)
|
||||
return (__os_posix_err(ret));
|
||||
|
||||
return (ret);
|
||||
}
|
||||
Reference in New Issue
Block a user