Hi there,
nice link for file I/O operations..
http://support.microsoft.c
Namespace required: System.IO
-Baan
Main Topics
Browse All TopicsI'm just beginning with .NET, obviously, and can't find what must be very simple..... Checking if a file exists. I don't know what namespace I need open and I can't figure out what function will get me there. I also would love to get the name of the server.
Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi there,
nice link for file I/O operations..
http://support.microsoft.c
Namespace required: System.IO
-Baan
Imports System.IO
Then, you can use the shared Exists() method to look for a specific file. With
the File class, you pass in the path as a string, like so:
If File.Exists("c:\myfile.txt
'do something
Else
'do something
End If
or
this procedure with the FileInfo class. This time we need to
explicitly create the class instance, as seen here:
Dim MyFile As New FileInfo("c:\myfile.txt")
If MyFile.Exists() Then
'do something
Else
'do something
End If
This time, the Exists() method didn't require the filename as a parameter
because the object itself points to the appropriate file.
Okay...
BUG:
Theortically, when calling a Network File, the Exists() method should return a Security ACCESS error ~ this should be documented as a .NET bug
REASON:
ASPNET accounts usually dont get setup with network rights.
SOLUTION:
1. Make sure your ASPNET account has permissions on your network!
=> IMPERSONATION:
http://msdn.microsoft.com/
conaspnetimpersonation.asp
SOURCE OF MY FINDINGS & DRAWING TO A CONCLUSION:
http://support.microsoft.c
Business Accounts
Answer for Membership
by: planoczPosted on 2004-07-23 at 06:05:05ID: 11620885
Hi dougfosterNYC,
.com/vbasi c/download s/samples/ 101samples .aspx
asp.net/do wnloads/ki ts/ default .aspx
Here is where I found a good examples for a starting new in VB.Net
.....http://msdn.microsoft
Link for ASP programs...
http://msdn.microsoft.com/