Click here to Skip to main content
15,911,646 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How will i access remote shared folder & it's contain(txt Files) from local computer???


Please help me soon....
Posted

if the folder is share then what an issue ?
Just check
VB
if(System.IO.File.Exist("\\Servername or IP of remote computer\Share folder name \.txt file")) then
   MessageBox.Show("File exist")
' your code goes here
Else
   MessageBox.Show("File not exist")
End If
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900