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

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

Returns the 'Raw' DateInformation in ftp format. (YYYYMMDDhhmmss). Use GetFileDate to return a DateTime object as a better option.
public GetFileDateRaw ( string fileName ) : string
fileName string Remote FileName to Query
Результат string
		public string GetFileDateRaw(string fileName)
		{
			Connect();

			SendCommand("MDTM " + fileName);
			ReadResponse();
			if (response != 213)
			{
#if (FTP_DEBUG)
				Console.Write("\r" + responseStr);
#endif
				throw new Exception(responseStr);
			}

			return (this.responseStr.Substring(4));
		}
		/// <summary>