如何在 apache 上使用 os.mkdir() python 命令在网络计算机上创建文件夹?

发布于 2024-11-01 13:21:32 字数 274 浏览 1 评论 0原文

我使用的是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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

缺⑴份安定 2024-11-08 13:21:32

大胆猜测:

将共享挂载到驱动器盘符,这样您就可以通过 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 :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文