View Single Post
  #4  
Old 09-22-2009, 11:53 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Of course it doesn't, it's up to you to create the file using the new path and write to it:
Code:
f = open( viz.res.getPublishedPath('output.txt') , 'w' )
f.write('bla bla bla')
f.close()
Reply With Quote