I am using Win2008 server + Apache2.2 + mod_python. I would make a folder using string value from the web form. It works in local drive
os.mkdir('D:\\temp\\" + folederName)`
But it does not work on network -
os.mkdir('\\\\192.168.131.200\\temp\\" + folederName)
How can I create a folder to the network computer?