Thank you for the replay.
I understand you point, I'm able to read the file, in this case I can read the "DocEnv.CATSettings"
Then, I can decoded using "Unicode" for example. But then how do I proceed?
For example:
Dim bteRead() As Byte
bteRead = File.ReadAllBytes("D:\_V5R21\CATReferenceSettingPath\DocEnv.CATSettings")
Private Function UnicodeBytesToString(bytes() As Byte) As String
Return System.Text.Encoding.Unicode.GetString(bytes)
End Function
Thank you.