RE: [Help] Wrong Skin Trace errors
In Windows ALL paths should always use '\', but in Linux (or *nix) you should always use '/'. Mostly programs written/ported from Linux to Windows uses '/' though, that would include open-source projects such as Firefox (IE has this as well, because it's standard). Any decent program should support both.
Messenger Plus! is completely written for Windows, but I think it accepts both '/' and '\', mostly because the CreateFile API does (used to open the file).
Mattike: That won't ever happen, because when the string is copied to an array of bytes, the bytes will be the same as in the file, and that doesn't include these \, since your editor used "\\" when writing to the file.
|