Your search for DEDE returned 3 results.
Search
Dive Into Python
Dive Into Python is a Python book for experienced programmers, you can download, view online or buy. To everybody coming from a different programming background then Python I can recommend this book.
Code tutorials
Write nodes filename from topmost read
if you need your output file named exactly like your input file then use a little TCL expression in the file knob of the write node
suggestion your filename convention is like: //path/to/file/filename.pattern.ext
then:
[lindex [split [lindex [split [knob [topnode].file] .] 0] /] end]
will give you back just the "filename" part of the original read node
if you want…