(file) Return to dir.h CVS log (file) (dir) Up to [OMI] / omi / base

File: [OMI] / omi / base / Attic / dir.h (download)
Revision: 1.1.1.1 (vendor branch), Wed May 30 21:47:49 2012 UTC (12 years ago) by mike
Branch: TOG
CVS Tags: OMI_1_0_2_Branch, OMI_1_0_2, OMI_1_0_1_PRE, OMI_1_0_1, OMI_1_0_0
Changes since 1.1: +0 -0 lines
Initial Import

/*
**==============================================================================
**
** Open Management Infrastructure (OMI)
**
** Copyright (c) Microsoft Corporation
** 
** Licensed under the Apache License, Version 2.0 (the "License"); you may not 
** use this file except in compliance with the License. You may obtain a copy 
** of the License at 
**
**     http://www.apache.org/licenses/LICENSE-2.0 
**
** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 
** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 
** MERCHANTABLITY OR NON-INFRINGEMENT. 
**
** See the Apache 2 License for the specific language governing permissions 
** and limitations under the License.
**
**==============================================================================
*/

#ifndef _base_dir_h
#define _base_dir_h

#include <common.h>
#include <base/strings.h>

#if defined(_MSC_VER)
# include <io.h>
# include <direct.h>
#else
# include <sys/types.h>
# include <sys/stat.h>
# include <unistd.h>
#endif

BEGIN_EXTERNC

MI_INLINE int Mkdir(const char* path, int mode)
{
#if defined(_MSC_VER)
    MI_UNUSED(mode);
    return _mkdir(path);
#else
    return mkdir(path, mode);
#endif
}

/* Create the given directory and any directories along the path */
int Mkdirhier(const char* path, int mode);

MI_INLINE int Chdir(const char* path)
{
#if defined(_MSC_VER)
    return _chdir(path);
#else
    return chdir(path);
#endif
}

MI_INLINE int Rmdir(const char* path)
{
#if defined(_MSC_VER)
    return _rmdir(path);
#else
    return rmdir(path);
#endif
}

MI_Boolean Isdir(const char* path);

typedef struct _DirEnt 
{
    char name[MAX_PATH_SIZE];
    int type;
}
DirEnt;

typedef struct _Dir Dir;

Dir* Dir_Open(const char* path);

DirEnt* Dir_Read(Dir* dir);

int Dir_Close(Dir* dir);

char** Listdir(const char* path);

/* Format TMPDIR/file (leave result in 'path' and return path) */
char* TempPath(char path[MAX_PATH_SIZE], const char* file);

/* Find the 'basename' of a path (final component without leading directory) */
const char* Basename(const char* path);

MI_Char* ZSTempPath(MI_Char path[MAX_PATH_SIZE], const char* file);

END_EXTERNC

#endif /* _base_dir_h */

ViewCVS 0.9.2