You could use in windows a batch like the following; echo >Output.csv for %%A in (File*.txt) DO CALL :Make %%A goto end :Make Echo "%1",##>>Output.csv type "%1">>Output.csv :end
Which will append all the files named files*.txt together into output.csv. Then use a good replace command/editor to change ##\n to \n (where \n is new line) An old school editor I use for this is PFE32 On importing the first csv column would be the filename/tiddler title and the second the content. Of course you must watch the possibility of commas in your text. Regards Tony TonyM If you have not found an easy way to do it with TiddlyWiki, you have missed something. www.tiddlywiki.com On Thu, Mar 25, 2010 at 13:57, ihtiyac <[email protected]> wrote: > Hi > > Thanks for the reply I will check out your suggestions. > > Basically I have 800+ small text files that I want import into TW. As > you can imagine this can be a daunting task if I need to it manually > or near manually. > > -- > You received this message because you are subscribed to the Google Groups > "TiddlyWiki" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<tiddlywiki%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/tiddlywiki?hl=en. > > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

