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

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

Change to another directory on the ftp server
public ChangeDir ( string path ) : void
path string Directory to change to
Результат void
		public void ChangeDir(string path)
		{
			Connect();
			SendCommand("CWD " + path);
			ReadResponse();
			if (response != 250)
			{
#if (FTP_DEBUG)
				Console.Write("\r" + responseStr);
#endif
				throw new Exception(responseStr + " : " + path);
			}
		}
		/// <summary>