KolibriLib
|
Работа с файлами More...
Functions | |
int | CreateFile (const char *name) |
Создать файл | |
int | CreateFile (const char *name, char *path) |
Создать файл | |
int | CreateFile (std::string name) |
Создать файл | |
int | CreateFile (std::string name, std::string path) |
Создать файл | |
int | Delete (const char *name) |
удалить файл или папку | |
int | Delete (const char *name, char *path) |
удалить файл или папку | |
int | Delete (std::string name) |
удалить файл или папку | |
int | Delete (std::string name, std::string path) |
удалить файл или папку | |
int | mkdir (const char *path) |
Создать папку | |
int | mkdir (const std::string path) |
Создать папку | |
bool | Exist (const std::string Path) |
проверяет существует ли файл или папки | |
int | Rename (const std::string OldName, const std::string NewName) |
Переименовать файл/папку | |
int KolibriLib::filesystem::CreateFile | ( | const char * | name | ) |
Создать файл
name | полный путь до файла |
int KolibriLib::filesystem::CreateFile | ( | const char * | name, |
char * | path ) |
Создать файл
name | имя файла |
path | путь до файла |
int KolibriLib::filesystem::CreateFile | ( | std::string | name | ) |
Создать файл
name | имя файла |
int KolibriLib::filesystem::CreateFile | ( | std::string | name, |
std::string | path ) |
Создать файл
name | имя файла |
path | путь до файла |
int KolibriLib::filesystem::Delete | ( | const char * | name | ) |
удалить файл или папку
name | полный путь до файла |
int KolibriLib::filesystem::Delete | ( | const char * | name, |
char * | path ) |
удалить файл или папку
name | имя файла |
path | путь до файла |
int KolibriLib::filesystem::Delete | ( | std::string | name | ) |
удалить файл или папку
name | имя файла |
int KolibriLib::filesystem::Delete | ( | std::string | name, |
std::string | path ) |
удалить файл или папку
name | имя файла |
path | путь до файла |
bool KolibriLib::filesystem::Exist | ( | const std::string | Path | ) |
проверяет существует ли файл или папки
путь | до файла/папки |
|
inline |
Создать папку
path | путь |
|
inline |
Создать папку
path | путь |
|
inline |
Переименовать файл/папку
OldName | Старое имя файла/папки |
NewName | Новое имя файла/папки |