我需要引用Autoit中的一个文件,我们称它为位置%appdata%\folder\file.txt
如何在 Autoit 中调用它?我已经看到 %appdata% 在其中被引用为@AppDataCommonDir,但我无法正确获得完整的路径。
谢谢。
你的意思是以下内容?
$file = @AppDataCommonDir & "folderfile.txt"
include
本地$filePath$filePath = _PathFull("文件夹\文件.txt", @AppDataDir)
MsgBox (0, "Path", $filePath)