I just solved what might be your issue tonight. Basically TextEdit was adding it's own extension of ".rtf" or ".txt" to the file.
I had to use the terminal to rename the file and remove the extension you don't want. It then worked as expected.
This is the terminal command.
mv oldfilename newfilename
You can figure out what it's actually named by showing all filename extensions in the Finder preferences or by listing the directory using Terminal:
ls -a
Hope this helps.
Ben
I had to use the terminal to rename the file and remove the extension you don't want. It then worked as expected.
This is the terminal command.
mv oldfilename newfilename
You can figure out what it's actually named by showing all filename extensions in the Finder preferences or by listing the directory using Terminal:
ls -a
Hope this helps.
Ben