Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
System.IO.File.Exists
Message
 
To
25/05/2005 11:45:57
Jerry Tovar
Dana Corporation Dana It
Maumee, Ohio, United States
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01017546
Message ID:
01017610
Views:
23
Try something like this:
////////////////////////////////
string s = "\\\\myserver\\data\\images\\myimage.jpg"; //will not find this
string lc_file1 = Server.MapPath(s) //Now it should find it
string lc_file2 = "c:\\media\\images\\myimage.jpg"; //this will be found

///This hits the else statement because it can't find the file.
if (System.IO.File.Exists(lc_file1) == true)
{
///perform not found action
}
else
{
///peform found action
}


///This does find the file on the local drive.
if (System.IO.File.Exists(lc_file2) == true)
{
///perform not found action
}
else
{
///peform found action
}
////////////////////////////////
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform