Modules/FileSystem: Difference between revisions
Jump to navigation
Jump to search
(Created page with "<pageclass class="#62A033" subcaption="FileSystem module"></pageclass> {{Module_Info| name = FileSystem | version = 1.2 | author = [[User:The_GTA|...") |
No edit summary |
||
Line 27: | Line 27: | ||
'''Be careful how you expose the FileSystem module to your server resources!''' | '''Be careful how you expose the FileSystem module to your server resources!''' | ||
==Support== | |||
To ask questions about this module, report any bugs or just hang around in general, join #mta.recore at irc.gtanet.com | |||
{{:MTA:Eir/FileSystem/functions}} | {{:MTA:Eir/FileSystem/functions}} | ||
[[Category:Modules]] | [[Category:Modules]] |
Revision as of 23:21, 1 February 2014
Module info | |
Name | FileSystem |
Version | 1.2 |
Author | Martin Turski (The_GTA) |
Module website | Here |
Download link | Win32 |
License | none |
Written in | C++ |
Operating system | Cross-platform |
Compatible with | 1.X |
FileSystem is the MTA:Eir file management implementation exported as MTA:BLUE module. It is made for those people who are not satisfied with the standard MTA file functions. Its feature-set covers binary stream writing, directory scanning and path resolution logic. It should satisfy all needs regarding file functionality. The modules' source code is released within the MTA:Eir SVN.
Its documentation can be found here. To find coding examples, browse the individual class methods.
Installing FileSystem into your Server
- Place the fileSystem*.dll module into your MTA server modules directory
- Add the module into the mtaserver.conf module loading list (at the bottom of the file)
- Edit the acl.xml in a way that resources require admin rights to call createFilesystemInterface
System Access Possibilities
- Accessing whole system
- Listing and editing all server resources
- Modifying MTA Server configuration
Be careful how you expose the FileSystem module to your server resources!
Support
To ask questions about this module, report any bugs or just hang around in general, join #mta.recore at irc.gtanet.com
FileSystem Library Functions
- createFilesystemInterface (module only)
FileSystem Namespace Functions
- createTranslator
- createRAMDisk
- createMemoryFile
- createFileIterative
- createArchiveTranslator (not module)
- createZIPArchive (not module)
- copyFile
- copyStream
- copyStreamCount
- pathToFilename
- streamCompare
- topointer
- type
- setDoBufferAllRaw
- getDoBufferAllRaw
FileSystem Translator Functions
- open
- exists
- createDir
- chdir
- delete
- copy
- rename
- size
- stat
- relPath
- relPathRoot
- absPath
- absPathRoot
- scanDir
- scanDirEx
- getDirs
- getFiles
- setOutbreakEnabled
- getOutbreakEnabled
- setPathProcessingMode
- getPathProcessingMode
FileSystem Archive Translator Functions
- save (not module)