-1

Kindly help to get file path from D drive. how to get path as like it is "D:\Folder\Reports\DAILY REPORT\new.docx". Any one help me ?

Vijay Anand
  • 200
  • 1
  • 2
  • 10
  • 1
    what have you tried so far? are you trying to access files in server side or client side? – Damith Oct 31 '15 at 10:36
  • http://stackoverflow.com/questions/674479/how-do-i-get-the-directory-from-a-files-full-path There is an example. Look for the Path library. – Oxoron Oct 31 '15 at 10:37

1 Answers1

1

Your question is not complete but if you want resolve virtual paths and physical paths you can use HttpContext.Current.Server.MapPath

For example:

 HttpContext.Current.Server.MapPath("~/Reports/DAILY REPORT/new.docx");

But i don't know what you want exactly.