HyperDbg Debugger
|
common utils More...
#include "pch.h"
Functions | |
BOOLEAN | IsFileExists (const std::string &FileName) |
check if a file exist or not | |
BOOLEAN | IsDirExists (const std::string &DirPath) |
check if a path exist or not | |
BOOLEAN | CreateDirectoryRecursive (const std::string &Path) |
create a directory recursively | |
const std::vector< std::string > | Split (const std::string &s, const char &c) |
general split command | |
common utils
BOOLEAN CreateDirectoryRecursive | ( | const std::string & | Path | ) |
create a directory recursively
Path | path of file |
BOOLEAN IsDirExists | ( | const std::string & | DirPath | ) |
check if a path exist or not
DirPath | path of dir |
BOOLEAN IsFileExists | ( | const std::string & | FileName | ) |
check if a file exist or not
FileName | path of file |
const std::vector< std::string > Split | ( | const std::string & | s, |
const char & | c ) |
general split command
s | target string |
c | splitter (delimiter) |