Esta costumbre fue heredada de windows 7. Yo normalmente elegir todos los archivos y luego haga clic derecho y obtener el tamaño de la carpeta. Pero cuando hago esto en Macos, mac abrir toda la información de archivo. Entonces ¿cómo puedo cerrar las ventanas a la vez? Muchas gracias.
Respuesta
¿Demasiados anuncios?Para cerrar todas Buscador de windows a la vez, presione la Opción de tecla mientras hace clic en el Archivo de menú en el Finder y seleccione Cerrar Todas o sólo presione la Opción-Comando-W.
Por cierto, para obtener Información de Resumen para múltiples archivos/carpetas en el Finder, seleccione el destino de los archivos/carpetas y, a continuación, de Control, haga clic en y seleccione Obtener Información de Resumen. A continuación, sólo tiene una Obtener Información de la hoja de abrir y puede pulsar Comando-W para cerrar.
Para cerrar sólo los de Obtener Información de uso de 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