디스크를 마운트하는 컨텍스트에 대해서는 언급하지 않지만 다른 방법으로 진행하여 Applescript로 디스크를 마운트하는 것은 어떻습니까?
Applescript로 디스크를 마운트 할 때 네트워크 볼륨이고 네트워크가 암호로 보호되어 있으면 사용자 이름과 암호를 스크립트에 일반 텍스트로 저장해야한다는 큰주의가 있기 때문에 컨텍스트를 언급합니다. 실행.
업데이트 : 약간의 검색으로 다른 곳에서 비슷한 질문이 발견되었습니다. 기본적으로 스크립트를 / Volumes에 폴더 조치로 적용하여 스크립트를 작성할 수 있습니다.
on adding folder items to this_folder after receiving these_items
repeat with aItem in these_items
tell application "Finder"
if (local volume of aItem) and (name of aItem is "[Name of Hard Drive]") then
-- do something with the drive
-- eject aItem
end if
end tell
end repeat
end adding folder items to