From dcc5deb77c2d267e0ef060d4ffeedbe66f4e1088 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Thu, 23 May 2013 20:44:40 -0400 Subject: [PATCH] Now complains on download if download path doesn't exist. --- mystic/nodespy_term.pas | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mystic/nodespy_term.pas b/mystic/nodespy_term.pas index 3b6f46c..a4fe21c 100644 --- a/mystic/nodespy_term.pas +++ b/mystic/nodespy_term.pas @@ -647,6 +647,12 @@ Var Image : TConsoleImageRec; Queue : TProtocolQueue; Begin + If Not DirExists(XferPath) Then Begin + ShowMsgBox (0, 'Download directory does not exist'); + + Exit; + End; + Queue := TProtocolQueue.Create; Zmodem := TProtocolZmodem.Create(Client, Queue);