How can i make CCS to create a txt file.
Normally I would use:
file = fopen(”mytext.txt”, ”w”);
fprintf(file, “This is example”);
fclose(file);
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
How can i make CCS to create a txt file.
Normally I would use:
file = fopen(”mytext.txt”, ”w”);
fprintf(file, “This is example”);
fclose(file);
You can use the Scripting Console and call Java IO APIs from there to create and write to files on your PC.
Thanks
ki