WMS:WMLibFileIo

From XMS Wiki
Jump to navigationJump to search

Description

The public class FileIo class is used to handle file I/O operations in the WMLib. The functions in this class are static, meaning you don't have to create a new instance of the class to access the functions-you can access them directly.

Functions

  • public static bool FileCompare(string file1, string file2)

This function compares two files, file1 and file2. The return value is true if the contents of the files are exactly the same and false otherwise.

  • public static bool ReadTreeFile(string a_fileName, WMLib.HydroTree a_hydroTree)

This function reads a WMS Tree (.tre) file with the name a_filename and stores the tree information and the hydrologic data in the hydrologic tree a_hydrotree. The function returns true if successful and false otherwise. See the example in the introduction to see how this function is used.