Using Delphi 5...
FindFirst and FindNext lists only directories when using a path like \\192.168.0.1\Files\ instead of \\TestServer1\Files\
if (FindFirst(SearchName+'*.*', faAnyFile, Sr) = 0) then
AddElement(sr,SearchName);
while (FindNext(sr) = 0) do
AddElement(sr,SearchName);
How can I list the files and directories when the user enters the IP address instead of the server name.
Thanks!
cmd.exeand thenping TestServer1(or any other network activity with TestServer1 instead of IP). If this fails, then your app won't work as well. – Adam Jun 3 '12 at 18:58AddElementdo? – Jerry Dodge Jun 3 '12 at 21:50