Establecer el Buscador para mostrar los archivos invisibles. El siguiente Applescript para activar/desactivar.
El informe dice que los archivos se mueven a una carpeta llamada ".", que será invisible. Si tienes la suerte de que allí pueda estar... de lo contrario es hora de que el Disco de Perforación o de Recuperación de Datos de Recuperación de Datos [ninguno de los cuales son de libre]
El próximo cosas que hacer, en fin...
- Invertir en una estrategia de copia de seguridad; Máquina del Tiempo, Backblaze etc y uso.
- Tirar esa unidad y el uso de un formato HFS+ de la unidad, con Journalling - porque Mac del soporte para NTFS no es grande.. y por defecto no se puede escribir o de reparación de NTFS, por lo que tienen de Paragon o similares o habilitado a través de la Terminal.
Alternar Invisibles Applescript [copiar/pegar en el Editor Applescript, guardar como de la Aplicación]
--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