7 #ifndef _MIMETIC_OS_FILEOP_H
8 #define _MIMETIC_OS_FILEOP_H
20 typedef unsigned int uint;
22 static bool remove(
const std::string&);
23 static bool move(
const std::string&,
const std::string&);
24 static bool exists(
const std::string&);
26 static uint size(
const std::string&);
27 static uint ctime(
const std::string&);
28 static uint atime(
const std::string&);
29 static uint mtime(
const std::string&);
Defines some file utility functions.
Definition: fileop.h:18