* src/pp/hbpp.c
* src/vm/cmdarg.c
* src/rtl/defpath.c
* src/rtl/hbstrfmt.c
* src/rtl/dates.c
* src/rtl/hbinet.c
* src/rtl/gtpca/gtpca.c
* src/rtl/file.c
* src/compiler/ppcomp.c
+ Added strlen() casts to pacify warnings
* src/vm/hashfunc.c
+ Using hb_vmPushSize() to add HB_SIZE support for Win64
* src/vm/debug.c
! HB_SIZE -> HB_LONG. Signaled by warning
* include/hbvm.h
* src/vm/hvm.c
+ Added hb_vmPushSize()
Please review, I copied hb_vmPushHBLong()
* src/common/hbfopen.c
+ Suppressed MS warning about "unsafe" fopen()
Also readded fopen_s() code, which is made inactive permanently.
* include/hbexprop.h
+ Added argument names to function declarations.
* contrib/hbct/ctwin.c
+ HB_SIZE -> HB_UINT, plus added necessary casts. Signaled by warning.
* contrib/xhb/xhbarr.c
+ HB_SIZE -> int, plus added necessary casts. Signaled by warning.
* contrib/hbsqlit3/hbsqlit3.c
- Suppressed MS warning about "unsafe" fopen()
117 lines
3.6 KiB
C
117 lines
3.6 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* hb_fsFile() function
|
|
*
|
|
* Copyright 1999-2002 Viktor Szakats (harbour.01 syenar.hu)
|
|
* www - http://harbour-project.org
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
|
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
|
*
|
|
* As a special exception, the Harbour Project gives permission for
|
|
* additional uses of the text contained in its release of Harbour.
|
|
*
|
|
* The exception is that, if you link the Harbour libraries with other
|
|
* files to produce an executable, this does not by itself cause the
|
|
* resulting executable to be covered by the GNU General Public License.
|
|
* Your use of that executable is in no way restricted on account of
|
|
* linking the Harbour library code into it.
|
|
*
|
|
* This exception does not however invalidate any other reasons why
|
|
* the executable file might be covered by the GNU General Public License.
|
|
*
|
|
* This exception applies only to the code released by the Harbour
|
|
* Project under the name Harbour. If you copy code from other
|
|
* Harbour Project or Free Software Foundation releases into a copy of
|
|
* Harbour, as the General Public License permits, the exception does
|
|
* not apply to the code that you add in this way. To avoid misleading
|
|
* anyone as to the status of such modified files, you must delete
|
|
* this exception notice from them.
|
|
*
|
|
* If you write modifications of your own for Harbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#include "hbapi.h"
|
|
#include "hbapifs.h"
|
|
|
|
HB_BOOL hb_fsFile( const char * pszFilename )
|
|
{
|
|
PHB_FFIND ffind;
|
|
char * pszFree;
|
|
|
|
HB_TRACE(HB_TR_DEBUG, ("hb_fsFile(%s)", pszFilename));
|
|
|
|
pszFilename = hb_fsNameConv( pszFilename, &pszFree );
|
|
|
|
if( ( ffind = hb_fsFindFirst( pszFilename, HB_FA_ALL ) ) != NULL )
|
|
{
|
|
hb_fsFindClose( ffind );
|
|
if( pszFree )
|
|
hb_xfree( pszFree );
|
|
return HB_TRUE;
|
|
}
|
|
|
|
if( pszFree )
|
|
hb_xfree( pszFree );
|
|
|
|
return HB_FALSE;
|
|
}
|
|
|
|
HB_BOOL hb_fsIsDirectory( const char * pszFilename )
|
|
{
|
|
HB_BOOL bResult = HB_FALSE;
|
|
PHB_FFIND ffind;
|
|
char * pszFree = NULL;
|
|
int iLen;
|
|
|
|
HB_TRACE(HB_TR_DEBUG, ("hb_fsIsDirectory(%s)", pszFilename));
|
|
|
|
pszFilename = hb_fsNameConv( pszFilename, &pszFree );
|
|
|
|
iLen = ( int ) strlen( pszFilename );
|
|
while( iLen && strchr( HB_OS_PATH_DELIM_CHR_LIST, pszFilename[ iLen - 1 ] ) )
|
|
--iLen;
|
|
|
|
if( pszFilename[ iLen ] )
|
|
{
|
|
if( pszFree )
|
|
pszFree[ iLen ] = '\0';
|
|
else
|
|
pszFilename = pszFree = hb_strndup( pszFilename, iLen );
|
|
}
|
|
|
|
if( iLen && iLen <= ( HB_PATH_MAX - 1 ) )
|
|
{
|
|
if( ( ffind = hb_fsFindFirst( pszFilename, HB_FA_DIRECTORY ) ) != NULL )
|
|
{
|
|
if( ( ffind->attr & HB_FA_DIRECTORY ) == HB_FA_DIRECTORY )
|
|
bResult = HB_TRUE;
|
|
hb_fsFindClose( ffind );
|
|
}
|
|
}
|
|
|
|
if( pszFree )
|
|
hb_xfree( pszFree );
|
|
|
|
return bResult;
|
|
}
|