FileSystem
CreateDir
MTools.FileSystem.CreateDir(path);
path
string
Path to directory
Allows you to create a directory. The Original Way: Counter-Strike Global Offensive
Example usage:
GetGameDirectory
MTools.FileSystem.GetGameDirectory();
-
-
-
Allows you to get a normal path to the game directory.
Example usage:
DeleteFile
MTools.FileSystem:DeleteFile(path, file, auto);
path
string
Path to directory
file
string
File name
auto
boolean
Automatically get the path. If true, then only the directory name must be inserted into the path
Allows you to delete a file by name.
Example usage:
ReadFolder
MTools.FileSystem:ReadFolder(path, auto);
path
string
Path to directory
auto
boolean
Automatically get the path. If true, then only the directory name must be inserted into the path
Allows you to get all Files and Directories by path.
Example usage:
Last updated