IIOService¶
Interface for file-system abstraction.
Methods:¶
Void DirectoryCreate(String)¶
- Create a directory for the given path.
Boolean DirectoryExists(String)¶
- Return true if the directory exists for the given path.
Void DirectoryDelete(String)¶
- Delete the directory.
String[] GetFiles(String)¶
- Return with the file names for the given path.
Void FileDelete(String)¶
- Delete the file for the given path.
Boolean FileExists(String)¶
- Return true if the file exists on the given path.
Stream CreateFileStream(String, FileStreamModes)¶
- Create a stream that can read and/or write a file on the given path.