如何在 apache 上使用 os.mkdir() python 命令在网络计算机上创建文件夹?
我使用的是Win2008服务器+ Apache2.2 + mod_python。 我将使用网络表单中的字符串值创建一个文件夹。 它可以在本地驱动器中工作
os.mkdir('D:\\temp\\" + folederName)`
,但不能在网络上工作 -
os.mkdir('\\\\192.168.131.200\\temp\\" + folederName)
如何在网络计算机上创建文件夹?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大胆猜测:
将共享挂载到驱动器盘符,这样您就可以通过
Z:\xyz.txt
访问它,因为
\\\host\path
并不是真正可以的在正常文件系统操作中处理。编辑:请使用 os.path.join() 而不是硬编码路径内容:)
Wild Guess:
Mount the Share to a Driveletter, so you can access it via
Z:\xyz.txt
because the
\\\host\path
ist not really what can be handled in normal filesystem ops.EDIT: and please use
os.path.join()
instead of hardcoding the path stuff :)