태그 보관물: uti

uti

.apple 확장 프로그램이란 무엇입니까? 확장 프로그램이란 무엇입니까? 일부 파일을

.apple 확장 프로그램이란 무엇입니까? 일부 파일을 복구 중이며 .apple 확장명을 가진 여러 파일을 복구했습니다.



답변

터미널 명령을 file f0009024.apple통해 파일에 대한 정보를 얻을 수 있습니다.

Apple Single 또는 Apple Double 파일을 잘랐을 가능성은 매우 적습니다 . 그러나 그 순간은 제가 추측 한 유일한 추측입니다.


답변

AppleDouble을 디코딩하려면이 AppleScript를 사용하십시오.

on run   
    tell application "Decode AppleFile"
        activate
        set outputFile to decode file "Macintosh HD:Desktop Folder:encoded:SomeFile.hqx"
        -- set outputFile to decode file "Macintosh HD:encoded:%aFile" data fork file "Macintosh HD:encoded:aFile"   end tell   tell application "Finder"
        activate
        select outputFile
        move selection to folder "Macintosh HD:decoded"   
    end tell 
end run

답변