Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
FileIO.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12sealed class FileIO
13{
14 private void FileIO();
15 private void ~FileIO();
16
17 [Obsolete("use FileIO.FileExists")] static bool FileExist(string name) { return FileExists(name); }
18
25 static proto ref FileHandle OpenFile(string name, FileMode mode);
30 static proto ParseHandle BeginParse(string filename);
32 static proto bool FileExists(string name);
34 static proto bool MakeDirectory(string name);
36 static proto bool DeleteFile(string name);
38 static proto bool CopyFile(string sourceName, string destName);
47 static proto bool FindFiles(FindFilesCallback callback, string path, string ext);
48}
49
string path
FileMode
Mode for opening file. See FileSystem::Open.
Definition FileMode.c:14
func FindFilesCallback
Definition System.c:21