source: trunk/gsdl/lib/fileutil.h@ 91

Last change on this file since 91 was 91, checked in by rjmcnab, 25 years ago

Changed the directory structure (collect.cfg and site.cfg now reside
in the collection/etc directory). Changed all input to the library
software to be converted from utf-8 to unicode (info database, mg,
and display). Got lib.init to read in collect.cfg and build.cfg and
used the information to read in the macrofiles. Made it check for each
macro file in both the collection directory and then the main directory.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 291 bytes
Line 
1// a few useful file utilities
2
3#ifndef FILEUTIL_H
4#define FILEUTIL_H
5
6#include "text_t.h"
7
8
9// returns the proper concatenation of the two paths
10text_t filename_cat (text_t path1, text_t path2);
11
12// returns true if filename can be opened
13bool file_exists (const text_t &filename);
14
15
16#endif
Note: See TracBrowser for help on using the repository browser.