RE: automational generating of filenames (involving numbers)
- To: mathgroup at smc.vnet.net
- Subject: [mg42509] RE: [mg42494] automational generating of filenames (involving numbers)
- From: "David Park" <djmp at earthlink.net>
- Date: Sat, 12 Jul 2003 05:19:09 -0400 (EDT)
- Sender: owner-wri-mathgroup at wolfram.com
You could try a variation of this: Table["file" <> ToString[i], {i, 1, 5}] {"file1", "file2", "file3", "file4", "file5"} David Park djmp at earthlink.net http://home.earthlink.net/~djmp/ From: winkler [mailto:winkler at mbi-berlin.de] To: mathgroup at smc.vnet.net hi, I want to generate automatically new file names to export data in new files. For example: N=N+1 Export["name", f1] now I want to include N in the file name. Is there a possibility to do that or something similar? thx