File could not be read with the encoding specified?
4 answers
The "encoding" on a file determines how you map the series of bits in the file into logical characters in the character set. For some encodings, there is no mapping for a particular series of bits, and apparently RTC has encountered such a series of bits. This usual means that the encoding that is declared for the file does not match the encoding that was actually used to write the file.
The error message advice to declare the file as "binary" will fix this problem by telling RTC not to try to decode the bits ... just read them in directly as binary bits.
Cheers,
Geoff
The error message advice to declare the file as "binary" will fix this problem by telling RTC not to try to decode the bits ... just read them in directly as binary bits.
Cheers,
Geoff
Tried to check in some text files, but got following message, why?
The file(s) to be checked-in could not be read with the encoding specified.
Select the files to be treated as binary. If you decide later it is not binary, you can change the line delimiter property of the file.
Declare a text file as "binary"? Will we then lose some functionality? Something like merge for line?
The error message advice to declare the file as "binary" will fix this problem by telling RTC not to try to decode the bits ... just read them in directly as binary bits.