Cambiar el nombre predeterminado de 'Nueva carpeta'

11

Cuando creamos 'nueva carpeta' en el buscador, automáticamente se llamará 'carpeta sin título'.

¿Es posible cambiar el nombre de la carpeta predeterminada al nombre de la fecha actual, por ejemplo "20151223"?

    
pregunta sukema 23.12.2015 - 10:48

1 respuesta

17

Con la ayuda de AppleScript puedes lograr esto.

Abra AppleScript Editor, cree un nuevo documento y pegue el siguiente robado líneas:

tell application "Finder"
    try
        if exists Finder window 1 then
            set thisPath to (the target of the front window) as alias
        else
            set thisPath to (path to desktop)
        end if
    on error
        return
    end try
end tell
set x to my the_perfect_datestring()
if x is not "-ERROR" then
    set fullPath to thisPath & x as text
    tell application "Finder"
        try
            --activate
            if not (exists fullPath) then
                set y to make new folder at thisPath with properties {name:x}
            end if
            activate
            open y
        end try
    end tell
end if
on the_perfect_datestring()
    try
        set cd to (the current date)
        set the_year to year of (cd) as number
        set the_month to month of (cd) as number
        set the_day to day of (cd) as number
        if the_month < 10 then set the_month to "0" & the_month
        if the_day < 10 then set the_day to "0" & the_day
        return ((the_year & the_month & the_day) as string)
    on error
        return "-ERROR"
    end try
end the_perfect_datestring

Guarde el archivo como una aplicación AppleScript (por ejemplo, DateFolder.app) en algún lugar (por ejemplo, ~ / Aplicaciones).

Abra una carpeta y suelte el objeto DateFolder.app en la barra de herramientas:

Paracrearunacarpetaenunacarpetaabierta,simplementepresioneelíconodelaaplicaciónenlabarradeherramientas.Lanuevacarpetaseabriráautomáticamente.Eliminelalínea22enelscript(openy)sinodeseaqueseabralanuevacarpeta.SiagregalaaplicaciónalDockylaabre,crearáunanuevacarpetaenlacarpetaqueseencuentraenlapartefrontaloenelescritorio(sinohayunacarpetaabierta).

SoloprobadoenMacOSX10.7.5.¡León!

Paraagregarunguiónylahoraactual,agreguelassiguienteslíneas(reemplazandolalínea32-34enelscriptanterior):

setthe_hourtohoursof(cd)asnumbersetthe_minutetominutesof(cd)asnumbersetthe_secondtosecondsof(cd)asnumberifthe_month<10thensetthe_monthto"0" & the_month
        if the_day < 10 then set the_day to "0" & the_day
        if the_hour < 10 then set the_hour to "0" & the_hour
        if the_minute < 10 then set the_minute to "0" & the_minute
        if the_second < 10 then set the_second to "0" & the_second
        return ((the_year & the_month & the_day & "-" & the_hour & the_minute & the_second) as string)
    
respondido por el klanomath 23.12.2015 - 11:32

Lea otras preguntas en las etiquetas