home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysys / test_dir.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  51 lines

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This library is free software; you can redistribute it and/or
  4.    modify it under the terms of the GNU Library General Public
  5.    License as published by the Free Software Foundation; either
  6.    version 2 of the License, or (at your option) any later version.
  7.    
  8.    This library is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.    Library General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with this library; if not, write to the Free
  15.    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  16.    MA 02111-1307, USA */
  17.  
  18. /* TODO: Test all functions  */
  19.  
  20. #define USES_TYPES
  21. #include "mysys_priv.h"
  22. #include "my_dir.h"
  23.  
  24. int main(int argc, char *argv[])
  25. {
  26.   MY_DIR    *a;
  27.   uint        f;
  28.   DBUG_ENTER ("main");
  29.   DBUG_PROCESS (argv[0]);
  30.  
  31.   if (--argc > 0 && (*(++argv))[0] == '-' && (*argv)[1] == '#' )
  32.     DBUG_PUSH (*argv+2);
  33.  
  34.   a = my_dir("./", 0);
  35.   for (f = 0; f < a->number_off_files; f++)
  36.   {
  37.     printf("%s\n", a->dir_entry[f].name);
  38.   }
  39.  
  40.   a = my_dir("./", MY_WANT_STAT);
  41.   for (f = 0; f < a->number_off_files; f++)
  42.   {
  43.     printf("%s %d %d %d %s\n", a->dir_entry[f].name,
  44.        (int) a->dir_entry[f].mystat.st_size,
  45.        (int) a->dir_entry[f].mystat.st_uid,
  46.        (int) a->dir_entry[f].mystat.st_gid,
  47.        S_ISDIR(a->dir_entry[f].mystat.st_mode) ? "dir" : "");
  48.   }
  49.   return 0;
  50. }
  51.