检查 Zope 对象/图像是否可用/已上传
我将 zope2.10 与 python 一起使用 我想检查是否上传了图像文件
我在我自己的产品中,我有一个字符串路径,例如:
/Media/News/2010/image
,我想检查它是 image.gif 还是 image.jpg
但我不知道如何检查 所以它只是一个文件检查器。
文件是否存在于 zope 中是/否准备好
//编辑我不是 dtml 文件
im using zope2.10 with python
and i would like to check if a image File is uploaded
I am in my own Product and i have a path as string like:
/Media/News/2010/image
and i want to check if it is image.gif or image.jpg
But i don't know how to check
So it will be just a file checker.
Does the file exist in zope yes/no ready
//EDIT I'm not an a dtml file
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在普通的文件系统Python代码中,您将使用路径遍历到容器,然后检查容器中的两个ID。例如:
In normal filesystem Python code, you would use the path to traverse to to container, and then check the two IDs in the container. E.g.:
如果我没记错的话,您可以使用 has_key() 方法。
现在,根据您是否使用 dtml、python 或者其他什么,您可以执行类似
我没有测试代码的操作,但我很确定 has_key() 方法是您的解决方案。您可以在 dtml 或 python 脚本中使用它。
If I correctly remember, you can use the has_key() method.
Now, depending on whether you're using dtml, python or whatever, you can do something like
I didn't test the code, but I'm pretty sure the has_key() method is your solution. You can use it in dtml or in python scripts.