When splitting text files,how to create folder for each files as the output automatically,is there an option to do this?
and the output folder is as the same as the text files name(orginina files that is to be splitted)?
If the split filename includes a '\' character, TextPipe will automatically create the folder for you.
You can also use the Restrict to Filename filter to control the filename, using search/replace filters or even VBScript filters to control the new name.
I restrict filename and use search and replace as subfilter like this:(easypattern)
search: .*.txt
replace: \$0.txt
(I want to split a file with .txt extension.
BUt I cannot create folder for each files.
I think I do not know how to do it exactly.