Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/gfx/vr/service/openvr/src/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  dirtools_public.cpp   Sprache: C

 
//========= Copyright Valve Corporation ============//
#include "dirtools_public.h"
#include "strtools_public.h"
#include "pathtools_public.h"

#include <errno.h>
#include <string.h>

#ifdef _WIN32
#include "windows.h"
#else
#include <stdlib.h>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#endif

#if defined( OSX )
#include <sys/syslimits.h>
#endif


//-----------------------------------------------------------------------------
// Purpose: utility function to create dirs & subdirs
//-----------------------------------------------------------------------------
bool BCreateDirectoryRecursive( const char *pchPath )
{
 // Does it already exist?
 if ( Path_IsDirectory( pchPath ) )
  return true;

 // copy the path into something we can munge
 int len = (int)strlen( pchPath );
 char *path = (char *)malloc( len + 1 );
 strcpy( path, pchPath );

 // Walk backwards to first non-existing dir that we find
 char *s = path + len - 1;

 const char slash = Path_GetSlash();
 while ( s > path )
 {
  if ( *s == slash )
  {
   *s = '\0';
   bool bExists = Path_IsDirectory( path );
   *s = slash;

   if ( bExists )
   {
    ++s;
    break;
   }
  }
  --s;
 }

 // and then move forwards from there

 while ( *s )
 {
  if ( *s == slash )
  {
   *s = '\0';
   BCreateDirectory( path );
   *s = slash;
  }
  s++;
 }

 bool bRetVal = BCreateDirectory( path );
 free( path );
 return bRetVal;
}


//-----------------------------------------------------------------------------
// Purpose: Creates the directory, returning true if it is created, or if it already existed
//-----------------------------------------------------------------------------
bool BCreateDirectory( const char *pchPath )
{
#ifdef WIN32
 std::wstring wPath = UTF8to16( pchPath );
 if ( ::CreateDirectoryW( wPath.c_str(), NULL ) )
  return true;

 if ( ::GetLastError() == ERROR_ALREADY_EXISTS )
  return true;

 return false;
#else
 int i = mkdir( pchPath, S_IRWXU | S_IRWXG | S_IRWXO );
 if ( i == 0 )
  return true;
 if ( errno == EEXIST )
  return true;

 return false;
#endif
}


Messung V0.5
C=96 H=98 G=96

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.