System.IO file access from server.
-
I have a file in local computer and i need to access that file from server, if i use Environment.GetFolderPath Method (Environment.SpecialFolder) it is not getting accessed. How to get files in local computer in asp.net
You cannot just get files from local computer through a website. This would be a huge security issue. You either provide a file select field in the web page where the user selects a file. Or you create a desktop application / service (which you need to install of all client machines that exposes an interface for getting files)
This will do for now
-
You cannot just get files from local computer through a website. This would be a huge security issue. You either provide a file select field in the web page where the user selects a file. Or you create a desktop application / service (which you need to install of all client machines that exposes an interface for getting files)
This will do for now