view include/core/filesystem.h @ 39:bed33f89a982

ci/osx: darling is different from wine darling needs a separate 'shell' ARG
author Paper <mrpapersonic@gmail.com>
date Fri, 22 Sep 2023 09:41:10 -0400
parents 2743011a6042
children 4b05bc7668eb
line wrap: on
line source

#ifndef __core__filesystem_h
#define __core__filesystem_h
#include <string>

namespace Filesystem {

bool CreateDirectories(std::string path);
bool Exists(std::string path);
std::string GetParentDirectory(std::string path);
std::string GetConfigPath();

} // namespace Filesystem

#endif // __core__filesystem_h