Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 WinRT 中的文件系统访问是不同的(阅读:隔离),但我很好奇我们是否仍然需要担心 MAX_PATH,或者是否避免了该限制?
不,MAX_PATH 限制尚未解除 - 如果您将比 MAX_PATH 更长的路径传递给接受路径的 Windows 运行时 API,它仍然有可能会失败。但是 MAX_PATH 不太可能是相关的,因为 Windows 运行时 API 通常在字符串上运行,而不是在字符缓冲区上运行。
此外,由于 Metro 风格的应用程序通常被限制在它们访问的目录中,因此不太可能遇到深度路径。