マウントされているディスク
#!/usr/bin/env osascript
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
#
#
#
#
# com.cocolog-nifty.quicktimer.icefloe
----+----1----+----2----+-----3----+----4----+----5----+----6----+----7
use AppleScript version "2.8"
use framework "Foundation"
use scripting additions
set strFilePath to "/Volumes"
tell application "Finder"
set aliasChkDirPath to POSIX file strFilePath as alias
set listAliasContents to every disk of aliasChkDirPath
end tell
repeat with itemAliasContents in listAliasContents
set aliasContents to itemAliasContents as alias
tell application "Finder"
log name of aliasContents as text
end tell
end repeat
set strFilePath to "/Volumes"
tell application "Finder"
set aliasChkDirPath to POSIX file strFilePath as alias
set listAliasContents to every disk of aliasChkDirPath
end tell
repeat with itemAliasContents in listAliasContents
set aliasContents to itemAliasContents as alias
tell application "Finder"
log POSIX path of aliasContents as text
end tell
end repeat
| 固定リンク
「Admin Volumes」カテゴリの記事
- [System Events]ディスクのアンマウント(2025.01.17)
- [hdiutil]ディスクイメージのマウントポイントをユニークな値で作成する(2025.01.16)
- inode番号から対象のファイルを探す(warning: inode (id 9999999): Resource Fork xattr is missing or empty for compressed file)(error: doc-id tree: record exists for doc-id xxxxx, file-id 9999999 but no inode references this doc-id)(2024.10.22)
- inode番号を調べる(warning: inode (id XXXXXXXX): Resource Fork xattr is missing or empty for compressed file)(2024.10.22)
- 外部ディスクで使用中が出た場合に対象プロセスを終了させる(2024.10.13)