set fold to "/Users/Test/Desktop/" set file to "/Myfolder/Hi.txt"
Как я могу объединить эти две переменные, чтобы получить путь к моему файлу в виде
вот ты иди
set aFile to (the POSIX path of (path to desktop)) & "Myfolder/Hi.txt"
Используйте оператор объединения для объединения строк:
set the folderPath to "/Users/Test/Desktop/" set the filePath to "/Myfolder/Hi.txt" set the fullPath to folderPath & filePath