Cómo cerrar la ventana de información por lotes

1

Este hábito se heredó de Windows 7. Normalmente elijo todos los archivos y luego hago clic derecho y obtengo el tamaño de la carpeta. Pero cuando hago esto en Macos, Mac abre toda la información del archivo. Entonces, ¿cómo puedo cerrar esas ventanas a la vez? Muchas gracias.

    
pregunta yuxuan 06.10.2015 - 03:09

1 respuesta

2

Para cerrar todos los Buscadores ventanas a la vez, presione la tecla Opción mientras hace clic en el menú Archivo en < strong> Finder y seleccione Cerrar todo o simplemente presione Opción - Comando - W .

Por cierto, para obtener Información de resumen para múltiples archivos / carpetas en Finder , seleccione los archivos / carpetas de destino y luego Control haga clic y seleccione Obtener información de resumen . Entonces solo tiene una Obtener información hoja abierta y puede presionar Comando - W para cerrarla.

Para cerrar solo los de Obtener información use este AppleScript , por James Stout .

tell application "Finder"
    set theWindowList to windows (* get all Finder windows *)
    repeat with i from 1 to number of items in theWindowList (* loop through them *)
        set shouldClose to false (* reset to false *)
        set this_item to item i of theWindowList (* get a window from the list *)
        set windowName to name of this_item (* get the window'ss name  *)
        (* this list should contain class property that tells you the type of window - which is nice *)
        (* Class would be either "Finder window" for normal windows or "information window" for the Info windows *)
        (* However, it doesn't contain the class property. alas. *)
        (* So to differentiate, we can use the current view/panel props *)
        set thePropList to get properties of this_item
        (* in a try/catch as prop not set for the diff windows *)
        try
            set CurrentView to current panel of thePropList
            set shouldClose to true (* no error, it's an info panel, so close *)
        on error
            log "Not an info panel, leaving open: " & windowName
        end try
        (* this try/catch is just for a double check, feel free to comment out *)
        try
            set CurrentView to current view of thePropList
        on error
            if shouldClose = false then log "Not an info panel: " & windowName
        end try
        if windowName ends with " Info" and shouldClose then
            close this_item
            log "Closing info panel: " & windowName
        end if
    end repeat
end tell
    
respondido por el user3439894 06.10.2015 - 03:26

Lea otras preguntas en las etiquetas