PDA

Click to See Complete Forum and Search --> : Anybody who knows how to get files from a network drive???


Marja
Aug 9th, 1999, 07:04 PM
Please, can somebody help me. I need to read filesnames from a network drive that is NOT mapped so I can only use the following format:
//computername/drivename/directoryname/filename.txt

or I have to map it from the code. I want to do this with vbscript. Getfolder etc seem not to work for some strange reason.

Thanks,
Marja

Aug 10th, 1999, 12:33 PM
It will work, you can use something like
\\server\directory

sFile = Dir("\\server\directory\*.*")

etc


-Azzmodan