I am trying to convert one of my unix text files to a dos text file. I am using the following command:
Shell(string.format("unix2dos {0}", sFileCompletePath))
I've already added the unix2dos command in my environment path on the server.
But when I execute the above mentioned command I get a FileNotFound exception even when the file is located on the disk.
Is there anything I am missing out?