I want to know that is there any property or method by which i come to know that a folder is there on the server.
just like if i have this in my web.config:
<appSettings>
<add key="ImagePath" value="http://server1:801/ImageById/"/>
</appSettings>
and i am getting this key like this:
var URL = System.Configuration.ConfigurationManager.AppSettings["ImagePath"].ToString();
Now i want to know that how to access imageById on the server and save something into this. just like below:
if("Folder exist on this server URL that is ImageById")
{
save images to the folder thorugh code of WCF as the folder has write permission.
}
and i want this functionality in WCF not in ASP.NET.
please help.