Posso offrirti 3 opzioni:
Opzione 1.
Penso che l'alternativa più popolare al Finder sia Path Finder e che abbia la funzione "nuovo file".
Opzione 2.
Se cerchi su App Store con "New file"
, troverai molte estensioni Finder che fanno questo.
Potrei suggerire:
-
Nuovo menu File gratuito
- Probabilmente vorrai impostare il modello come
Blank Document
-
Nuovo menu File (~ $ 2)
- Credo che la differenza fondamentale sia che quello gratuito consente di aggiungere un nuovo file alla volta e quello a pagamento consente di aggiungerne più.
Non ho provato molti di questi, quindi non so se questo è il migliore o no.
Opzione 3.
Mi sono fatto questo melecript:
QuestopotrebbeessereattivatousandoAlfredopraticamentequalsiasicosachesupportiiapplescripts.
UnafinestradidialogosiapriràchiedendoilnomedelfileequandosipremeInvio,ilnuovofileverràinseritonellacartellacorrentedelFinderoPathFinder.ÈlimitatoaprocederesolosePathFinderoFinderèl'applicazioneattiva.
- Questa è l'icona che uso nello script (non che sia importante o altro ...)
- Se non è chiaro, nel codice il percorso dell'icona è la radice della cartella utente:
~/new-file.icns
ed è definito nella variabile iconfile
.
if application "Path Finder" is frontmost then
tell application "Path Finder"
set currentPath to the path of the target of the front finder window
end tell
makeNewFile( currentPath )
else if application "Finder" is frontmost then
tell application "Finder"
set currentPath to (folder of the front window) as alias
end tell
makeNewFile( currentPath )
end if
on makeNewFile( currentPath )
set userPath to POSIX path of (path to home folder)
set iconfile to POSIX file (userPath & "new-file.icns") as alias
display dialog "For instance:
My File.txt, index.html, Markdown file.md" with title "Create a new file..." default answer "" with icon iconfile
set fileName to text returned of result
tell application "Finder"
make file at currentPath with properties {name:fileName}
end tell
end makeNewFile