Read files on my local machine
-
Hello, I would read files on my machine, for exemple if i use the path : 'c:\test\doc.pdf' , he acces on disk c: on my server but i need to read the file on my local disk c:\. Thank you verry mutch.
Since you're in ASP.NET forum you must be talking about a web application. So yes of course, the web application is running on the server and thus cannot not access the file system of the system the client (your browser) is running on. You can implement a file upload mechanism from your client to the server, then the server can access the file. Cheers!
-
Since you're in ASP.NET forum you must be talking about a web application. So yes of course, the web application is running on the server and thus cannot not access the file system of the system the client (your browser) is running on. You can implement a file upload mechanism from your client to the server, then the server can access the file. Cheers!