I have some files in the network path (\machine\folder\folder..). In asp.net, trying to pull the files from this path. here i want to use relative path not this network(absolute) path. please suggest on how to?
I have some files in the network path (\machine\folder\folder..). In asp.net, trying to pull
Share
Using
Path.GetFullPathshould give you the relative path.Alternatively, if you are trying to link to images; for example, on a network share you would need to make sure that the share is visible to your web server. You could then add specific AppSettings in your web.config to hold the UNC path to the Image directory:
In you code behind, you could then do something like this to get the image: