(file) Return to DirWindows.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/DirWindows.cpp between version 1.6 and 1.13

version 1.6, 2001/07/10 06:43:25 version 1.13, 2004/05/18 11:03:38
Line 1 
Line 1 
 //%/////////////////////////////////////////////////////////////////////////////  //%2003////////////////////////////////////////////////////////////////////////
 // //
 // Copyright (c) 2000, 2001 The Open group, BMC Software, Tivoli Systems, IBM  // Copyright (c) 2000, 2001, 2002  BMC Software, Hewlett-Packard Development
   // Company, L. P., IBM Corp., The Open Group, Tivoli Systems.
   // Copyright (c) 2003 BMC Software; Hewlett-Packard Development Company, L. P.;
   // IBM Corp.; EMC Corporation, The Open Group.
 // //
 // Permission is hereby granted, free of charge, to any person obtaining a copy // Permission is hereby granted, free of charge, to any person obtaining a copy
 // of this software and associated documentation files (the "Software"), to // of this software and associated documentation files (the "Software"), to
Line 22 
Line 25 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Amit K Arora, IBM (amita@in.ibm.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
 #include "Destroyer.h"  
 #include "Dir.h" #include "Dir.h"
 #include "Exception.h"  #include "InternalException.h"
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
Line 41 
Line 43 
     struct _finddata_t findData;     struct _finddata_t findData;
 }; };
  
 Dir::Dir(const String& path)  Dir::Dir(const String& path) :
          _rep(new DirRep)
 { {
     ArrayDestroyer<char> p(strcat(path.allocateCString(2), "/*"));      _rep->file = _findfirst((path+"/*").getCString(), &_rep->findData);
     _rep = new DirRep;  
     _rep->file = _findfirst(p.getPointer(), &_rep->findData);  
  
     if (_rep->file == -1)     if (_rep->file == -1)
     {     {
         _more = false;         _more = false;
           //delete _rep;
           _rep.reset();
         throw CannotOpenDirectory(path);         throw CannotOpenDirectory(path);
     }     }
     else     else
Line 61 
Line 64 
     if (_rep->file != -1)     if (_rep->file != -1)
         _findclose(_rep->file);         _findclose(_rep->file);
  
     delete _rep;  
       _rep.reset();
 } }
  
 const char* Dir::getName() const const char* Dir::getName() const


Legend:
Removed from v.1.6  
changed lines
  Added in v.1.13

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2