From: morgenroete1979 on
Hello, Everyone,
 
I have a question again.
 
How can I automatically create the file with a serie-filename?
 
e.g. I have a program, it will repeat 5 times, and every time it will create a bmp-file, and I want to let this program automatically save these 5 files with a Serie-filename like File001.bmp, File002.bmp, .... File005.bmp.
 
How can I do it?`
 
Thanks a lot.
 
Regarts,
 
Johnny
From: GerdW on
Hi Johnny, use a "format into string" with "File%04d.bmp" as format code and wire the loop iteration count to it's input. The result will be the filename...
From: morgenroete1979 on
Hello,
can you send me an example for that?
Thanks.
 
 
From: Deepu on
Hi
See the example code for the above suggestion...
Regards
 


Saving File in Series.PNG:
http://forums.ni.com/attachments/ni/170/321240/1/Saving File in Series.PNG
From: GerdW on
Hi Deepu, you should avoid using string functions to build full path! Use path constants ("C:\") and a "build path" node!