Ankur
Ankur

Reputation: 91

How to open a directory/folder on a machine on LAN using python?

I am designing a website for a local server on our lan, so that anyone who tires to access that IP from a browser sees a web page and when he clicks on some link on that web page then a directory or some folder from that server should open. I am using python for this purpose and the server is just like another PC with windows installed.

Upvotes: 0

Views: 403

Answers (1)

Dan K.
Dan K.

Reputation: 1532

If you just want to redirect the user to your file server, then it sort of depends on what operating system they're using. If everybody's going to be on Windows, then you should be able to include a link to "//Your-Fileserver-Name/Path1/Path2". Obviously you have to share the appropriate files on your server using Windows file-sharing.

Upvotes: 1

Related Questions