Imposta il Finder per mostrare i file invisibili. Il seguente codice a barre attiverà / disattiverà.
Il rapporto dice che i file sono stati spostati in una cartella chiamata "." che sarà invisibile. Se sei fortunato potrebbero essere lì ... altrimenti è il momento per Disk Drill o Data Recovery Recupero dati [nessuno dei due è gratuito]
Le prossime cose da fare saranno, per ...
- Investire in una strategia di backup; Time Machine, Backblaze ecc. & usalo.
- Getta quell'unità e amp; usa un'unità formattata HFS +, con Journalling - perché il supporto di Mac per NTFS non è eccezionale .. & per impostazione predefinita non è possibile scrivere o riparare NTFS, quindi si dispone di Paragon o simili o abilitati tramite Terminale.
Attiva / disattiva Invisibles Applescript [copia / incolla su Applescript Editor, salva come applicazione]
--Toggle Invisibles
tell application "Finder"
try
-- on launch check invis files state, if invis, switch to vis
set onOff to do shell script "defaults read com.apple.finder AppleShowAllFiles"
if onOff = "NO" or onOff = "OFF" then
my showAllFiles()
else
my hideAllFiles()
end if
my testFinderRunning()
end try
end tell
--Finder Visible & relaunch sub-routine
on showAllFiles()
do shell script "defaults write com.apple.finder AppleShowAllFiles ON"
tell application "Finder" to quit
delay 3
try
tell application "Finder" to activate
end try
end showAllFiles
on hideAllFiles()
--try
set onOff to do shell script "defaults read com.apple.finder AppleShowAllFiles"
do shell script "defaults write com.apple.finder AppleShowAllFiles OFF" --OnOffCommand
tell application "Finder" to quit
delay 3
try
tell application "Finder" to activate
end try
end hideAllFiles
on testFinderRunning()
set test to 0
--try
repeat while test = 0
log test
tell application "System Events" to set test to count (every process whose name is "Finder")
delay 2
--we do this even if active because it doesn't naturally come to front
try
tell application "Finder" to activate
end try
if (test > 0) then exit repeat
end repeat
end testFinderRunning