在 file.txt 我有如下引号
D:\file.txt:
"""\\server1\pc1\targetG0\source-pc\pkgs.gz"""
我的目标是将 D:\file.txt 中的行读入 pFile 参数
因此,我编写了以下简单的 VBA 代码:
Dim pFile As String
Open "D:\file.txt" For Input As #1
Input #1, pFile
Close #1
MsgBox pFile
我运行我的 VBA 代码,但由于不清楚的原因 pFile 没有得到文件中行的内容,txt 和 MsgBox 打印空框?
请告知为什么 pFile 得到 null ?以及我需要在代码中修复的内容,以便将 file.txt 中的行放入 pfile 参数中
- 备注如果我从该行中删除引号,则 pfile 将从文件中获取该行