LabVIEW 2017 无法打开来自 LabVIEW 2016 的 *.vi 文件

LabVIEW 2017 does not open *.vi-File from LabVIEW 2016

在我的 Windows 10 台电脑上安装了 LabVIEW 2017。我在 Uni 的 LabVIEW 2016 中创建的文件无法打开。当我双击时,LabVIEW 正常启动,但就像我在没有任何文件的情况下打开它一样。如果我正常启动 LabVIEW 并尝试从程序中打开文件,则什么也不会发生,甚至不会出现错误。这是为什么?

注意:现在我正在评估模式下使用 LabVIEW 2017。

我找到了原因...文件保存在名称包含右箭头 (→) 的文件夹的子文件夹中,显然 LabVIEW 不支持...

从技术上讲,我认为答案是 ASCII 26 不是 Windows 路径或文件名的有效字符,根据以下内容:https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247(v=vs.85).aspx

Use any character in the current code page for a name, including Unicode characters and characters in the extended character set (128–255), except for the following:

The following reserved characters:

< (less than)

> (greater than)

: (colon)

" (double quote)

/ (forward slash)

\ (backslash)

| (vertical bar or pipe)

? (question mark)

* (asterisk)

Integer value zero, sometimes referred to as the ASCII NUL character.

Characters whose integer representations are in the range from 1 through 31, except for alternate data streams where these characters are allowed. For more information about file streams, see File Streams.

Any other character that the target file system does not allow.

(强调我的。)