Has anyone seen this strange behavior? When I open a *vi direct from the forum the file name gets corrupted as follows:
For example from this "AO timedloop1.vi" to this "AO%20timedloop1[1].vi" as the default file name. I understand that 0x20 is the space character but why is LabVIEW doing this to the files? -SS
I don't think that LabVIEW is doing this. If you open it from the browser the file is saved to a temporary directory. The browser replaces the space by %20 (ASCII escape because spaces are not allowed in URLs) and the [1] is appended because the file already existed in your temporary directory.
I know about the [1] suffixes - I see those all the time, and yes, that's caused by the files residing in the browser's temp folder. I just haven't seen the %20. I'll pay more attention to see if I see it.