[Zope] Creating a file in the filesystem?
abg@comco-inc.com
abg@comco-inc.com
Mon, 4 Mar 2002 15:56:47 -0600
1) Install LocalFS (http://www.zope.org/Members/jfarr/Products/LocalFS).
2) Create the following External Method (call it addLocalFSFolder):
from OFS.Folder import Folder
def addLocalFSFolder(self, id):
ob = Folder()
ob.id = id
self._setObject(id, ob)
3) Call it from DTML like so:
<dtml-call "addLocalFSFolder(myLocalFS, myFolderName)">
This works for creating folders. Should be easy enough to modify to create
files.
Aaron
> -----Original Message-----
> From: j2 [mailto:spamfilter2@mupp.net]
> Sent: Monday, March 04, 2002 12:06 PM
> To: zope@zope.org
> Subject: [Zope] Creating a file in the filesystem?
>
>
> I would like to create a semaphore file in the filesystem
> (/tmp/restart
> maybe?) and then poll that file from a cron job to see if a
> certain daemon
> should be restarted. But, how on earth do one create such an object?
>
>
> _______________________________________________
> Zope maillist - Zope@zope.org
> http://lists.zope.org/mailman/listinfo/zope
> ** No cross posts or HTML encoding! **
> (Related lists -
> http://lists.zope.org/mailman/listinfo/zope-announce
> http://lists.zope.org/mailman/listinfo/zope-dev )
>