S
simonlyr
Unregistered / Unconfirmed
GUEST, unregistred user!
我在使用以下API函数时:<br>HANDLE FindFirstFile(<br> LPCTSTR lpFileName, // pointer to name of file to search for <br> LPWIN32_FIND_DATA lpFindFileData // pointer to returned information <br> );<br>发现:lpFileName只能是本地路径下才能发现文件,但我在以下的代码中:<br>Source_filehandle := FindFirstFile(PChar('http://www.xxx.com.xn/xxxx/xxx/xx/'+ '/'+ '*.*'), Source_FileData);<br>if Source_filehandle <> INVALID_HANDLE_VALUE then //如果文件查找有效<br>begin<br><br>end<br>else<br>begin<br> //始终是无效的??<br>end;<br>但以上远程服务器上的目录里是有文件的呀!怎么解决??急!