Apr 5, 2006 #1 nnmmss Programmer Sep 7, 2004 123 IR How can i find the list of files avalable in a PATH which begings with e.g (NM001_). i mean i want NM001_*.* in Path forexample c:\temp. thanks
How can i find the list of files avalable in a PATH which begings with e.g (NM001_). i mean i want NM001_*.* in Path forexample c:\temp. thanks
Apr 5, 2006 #2 HarleyQuinn Programmer Jan 15, 2003 4,769 GB I would do a search on this site for FileSystemObject or FSO. That should provide several helpful links to get you started. Hope this helps HarleyQuinn --------------------------------- Get the most out of Tek-Tips, read FAQ222-2244 before posting. Upvote 0 Downvote
I would do a search on this site for FileSystemObject or FSO. That should provide several helpful links to get you started. Hope this helps HarleyQuinn --------------------------------- Get the most out of Tek-Tips, read FAQ222-2244 before posting.
Apr 5, 2006 Thread starter #3 nnmmss Programmer Sep 7, 2004 123 IR i did like this and i got the answer myfile = Dir(RealPath) Do While myfile <> "" ' Start the loop. txtFile.Text = myfile myfile = Dir ' Get next entry. Loop Upvote 0 Downvote
i did like this and i got the answer myfile = Dir(RealPath) Do While myfile <> "" ' Start the loop. txtFile.Text = myfile myfile = Dir ' Get next entry. Loop