summaryrefslogtreecommitdiff
path: root/storage/ndb/src/cw/cpcc-win32/csharp/fileaccess/FileMgmt.cs
blob: b3a2361bcb0d571b0ea0024fabd62b6424b945e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Text;
using System.Collections.Specialized;
using System.IO;
using System.Windows.Forms;
namespace NDB_CPC.fileaccess
{
	/// <summary>
	/// Summary description for FileMgmt.
	/// </summary>
	public  class FileMgmt
	{
		public  FileMgmt()
		{
		}
		
		public StringCollection importHostFile(string filename)
		{
			StringCollection sc = new StringCollection();
			StreamReader SR = new StreamReader(filename);
			string line ="";
			line = SR.ReadLine();
			while(!line.Equals(""))
			{
				sc.Add(line);
				line = SR.ReadLine();
			}
			return sc;
		}

		public void exportHostFile(string filename, string content)
		{
			StreamWriter SW = new StreamWriter(filename,false);
			SW.Write(content);
			SW.WriteLine("");
			SW.WriteLine("");
			SW.Close();
		}

	}
}