fileutils.h
1 /************************************************************
2 * (C) Voxel Farm Inc. 2015
3 */
4 
5 #pragma once
6 
7 namespace VoxelFarm
8 {
10  long getFileSize(const char *fileName);
12  bool fileExists(const char* fileName);
13 }
Contains all classes and functions for the VoxelFarm engine.
bool fileExists(const char *fileName)
Returns whether the specified file exists.
long getFileSize(const char *fileName)
Returns the size in bytes of the specified file.