CSharpUtils.Net.FTP.List C# (CSharp) Метод

List() публичный Метод

Retrieves a list of files from the ftp server
public List ( ) : ArrayList
Результат System.Collections.ArrayList
		public ArrayList List()
		{
			Byte[] bytes = new Byte[512];
			string file_list = "";
			long bytesgot = 0;
			//int msecs_passed = 0;
			ArrayList list = new ArrayList();

			Connect();
			OpenDataSocket();
			SendCommand("LIST");
			ReadResponse();

			//FILIPE MADUREIRA.
			//Added response 125
			switch (response)
			{
				case 125:
				case 150:
					break;
				default:
					CloseDataSocket();
					throw new Exception(responseStr);
			}

			// http://www.codethinked.com/net-40-and-systemthreadingtasks
			// http://msmvps.com/blogs/peterritchie/archive/2007/04/26/thread-sleep-is-a-sign-of-a-poorly-designed-program.aspx
			//data_sock.BeginReceive(
			ConnectDataSocket();
			{
				do
				{
					bytesgot = data_sock.Receive(bytes, bytes.Length, 0);
					file_list += Encoding.ASCII.GetString(bytes, 0, (int)bytesgot);
				} while (data_sock.Available > 0);
			}
			CloseDataSocket();

			ReadResponse();
			if (response != 226)
				throw new Exception(responseStr);

			foreach (string f in file_list.Split('\n'))
			{
				if (f.Length > 0 && !Regex.Match(f, "^total").Success)
					list.Add(f.Substring(0, f.Length - 1));
			}

			return list;
		}
		/// <summary>