THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 25/07/2008 at 12:05, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 10.5
Platform: Mac OSX ;
Language(s) : C.O.F.F.E.E ;
---------
I am trying to write a little script which checks on the disk for a file to be written, then read the values and uses in a xpresso network.
I am starting now.
First task is check that the file is there or not.
First trouble, the code I am writing does not work.
this is it:
> main() \> { \> \> var filename = ("test.txt"); \> \> var a = FALSE; \> while ( a == FALSE){ \> println("the file is not there"); \> //something is wrong here: \> a = GeFileExist(filename, FALSE); \> //what is it? \> } \> \> println("Now the file IS there"); \> } \>
I am sure it's a simple thing but I am not yet familiar with coffee.
Could you help me?
Thanks
G>