Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question
Maybe this has to do something with WINS/Firewall. try to run cmd.exe and then ping 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:58
Can you use that same exact path specification in Windows Explorer? How about at a command prompt? – Ken White Jun 3 '12 at 19:01
1  
I'm testing this and I have identical results whether I enter the name or IP of the server. All files and folders are listed, as expected. – Jerry Dodge Jun 3 '12 at 21:36
1  
I would imagine that if anything using the name instead of IP would fail. Having wrong results using the IP but right using the Name is just puzzling me - something must be missing in your sample code. What does AddElement do? – Jerry Dodge Jun 3 '12 at 21:50
Got it... There was an issue later in AddElement... strangely in the first passes I didn't see any files going through. – Pascal D Jun 4 '12 at 0:51

closed as too localized by Rob Kennedy, David Heffernan, TOndrej, Stijn Sanders, Joe Jun 4 '12 at 16:00

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.