How to create a text file?

vmaneesh

Member
Hello - i want to create a text file in csv format at a particular location. Is that possible. If so, how to do it.?
I am aware of creating csv file using MS-Excel VBO, but i want to be able to create a csv file using a textfile.

Thanks in advance.
 

sivagelli

Well-Known Member
I am aware of creating csv file using MS-Excel VBO, but i want to be able to create a csv file using a textfile.
If i am reading the question right, thsi is what you are looking for-

Using 'Move File' action from 'Utility - File Management' you can convert a csv file to txt file and vice versa. This is a possible one as both csv and txt files are flat files.

Suppose you have a file 'test.csv' in 'c:\' drive and you are looking to make it as 'test.txt'. Use the 'Move File' action with the below inputs:

File path: "C:\test.csv"
Destination path: "C:\test.txt"

This would rename the csv file to txt file. Both are flat files so this is a possible case.

Post back how it goes.
 
Top