I am working on an application. That application should get the resume from the users, so that I need a code to verify whether a file exists or not.
I\'m using ASP.N
In addition to using File.Exists(), you might be better off just trying to use the file and catching any exception that is thrown. The file can fail to open because of other things than not existing.
File.Exists()