Si simplemente quieres pasar un nombre de archivo a la acción de Spotlight
El paso del nombre del archivo de una acción a un variable de ajuste Acción
- establecer la acción de Spotlight para ignorar la acción anterior. Para ello, haga clic con el botón derecho del ratón en la barra de título y utilice el menú.
- arrastre y suelte el token de la variable en el campo de texto de búsqueda.
ESTO ES UNA ACTUALIZACIÓN
Uso de acciones de Automator y Applescript para almacenar propiedades para su posterior recuperación:
La idea aquí es que la primera acción escribe un archivo applescript en la carpeta de documentos.
El script se utilizará para almacenar la información que vayamos obteniendo por el camino y recuperarla posteriormente en la acción final de Applescript.
Hacemos esto porque necesitamos pasarle al script</strkeep><strkeep> final varios bits de información. Lo que no podemos hacer con las variables normales de Automator.
Las acciones.
- Ejecuta Applescript: Escribe un un almacenamiento script en la carpeta de documentos
El script.
set script_text to MakeScript()
my RunMaker(script_text)
on RunMaker(script_text)
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt"
set file_path to POSIX path of file_path as string
store script script_text in file_path with replacing
end RunMaker
on MakeScript()
script
property theBrokenAliasFolderPath : ""
property broken_alias_file_Paths : {}
property theOriginalFolderPath : ""
property Original_file_Paths : {}
property SearchfileNames : {}
end script
end MakeScript
2, Pide los artículos del buscador: Esto es para la carpeta Broken Alias.
- Ajustar para ignorar la entrada
- pon tu inicio en: en tu carpeta de alias rotos.
- pon tu Tipo a: Carpeta
3,Ejecutar Applescript:
- Escribe la ruta de la carpeta de alias rota en una propiedad del archivo de almacenamiento script.
- pasar la ruta a la siguiente acción
( Las salidas de escritura las realiza el Action Applescript cargando el archivo de almacenamiento script. Esto será una especie de versión. Luego cambiará las propiedades en su versión y reescribirá el archivo de nuevo reemplazando el antiguo)
--WRITE OUT BROKEN ALIAS FOLDER PATH
on run {input, parameters}
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt" as alias
set script_text to load script file_path
set theBrokenAliasFolderPath of script_text to (POSIX path of (item 1 of input))
my RunMaker(script_text)
return input
end run
on RunMaker(script_text)
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt"
set file_path to POSIX path of file_path as string
store script script_text in file_path with replacing
end RunMaker
4,Obtener el contenido de la carpeta:
- La acción recibe la "ruta de la carpeta de alias rota" y obtiene todo el contenido de la carpeta.
5, Elementos del buscador de filtros:
- Filtra los elementos para que sólo contengan archivos de alias.
Todos: Tipo : es : otro : alias
- Pasar la lista a la siguiente Acción
6, Ejecutar Applescript:
Escribe el alias roto PATHS en una propiedad del archivo script.
on run {input, parameters}
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt" as alias
set script_text to load script file_path
set broken_alias_file_Paths of script_text to input
my RunMaker(script_text)
return input
end run
on RunMaker(script_text)
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt"
set file_path to POSIX path of file_path as string
store script script_text in file_path with replacing
end RunMaker
7, Preguntar por los elementos del buscador: Esto es para la carpeta de archivos originales.
- Ajustar para ignorar la entrada
- establezca su inicio en: en su carpeta de archivos originales.
- pon tu Tipo a: Carpeta
8,Ejecutar Applescript:
Escribe la carpeta de archivos originales en una propiedad del archivo script.
on run {input, parameters}
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt" as alias
set script_text to load script file_path
set theOriginalFolderPath of script_text to (POSIX path of (item 1 of input))
my RunMaker(script_text)
return input
end run
on RunMaker(script_text)
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt"
set file_path to POSIX path of file_path as string
store script script_text in file_path with replacing
end RunMaker
9, Ejecutar Applescript:
Esto recupera la información del almacenamiento script. Esto tomará la lista de rutas de los archivos de alias muertos.
-
Intenta encontrar un archivo que coincida en la carpeta de archivos originales. Buscará todas las coincidencias pero ignorará los alias.
-
Eliminar el antiguo archivo Alias (comprobando primero que es un archivo alias)
-
Cree un enlace simbólico en la carpeta en la que estaba el antiguo alias a partir del archivo coincidente encontrado.
-
Sólo se deben eliminar los archivos de alias. Si no se encuentra ningún archivo que coincida, el archivo de alias no se borrará. Tampoco se creará un enlace simbólico.
.
set file_path to (path to documents folder as Unicode text) & "MyProperties.scpt" as alias
set theScript to load script file_path
--choose a search folder
set searchPath to quoted form of theOriginalFolderPath of theScript
set folderPath to quoted form of theBrokenAliasFolderPath of theScript
set input to broken_alias_file_Paths of theScript
repeat with i from 1 to count of items of input
set this_item to item i of input
set aliasPath to this_item
#Get the the file name
set theFileName to "\\\"" & (do shell script "basename " & quoted form of (POSIX path of (this_item))) & "\\\"" as string
log theFileName
#search the searchPath for a matching file with the same name.
#NOTE: this will find all files with he same name. So We use last paragraph to get what should be the first one it finds.
set theOrigFilePath to paragraphs of (do shell script "mdfind -onlyin " & searchPath & " kMDItemFSName == \"" & theFileName & "\"")
if theOrigFilePath is not quoted form of "" then
repeat with i from 1 to count of items in theOrigFilePath
set this_item to item i of theOrigFilePath
log this_item
tell application "Finder"
#make sure we are pointing to an alais that will be deleted and not another symlink file. Otherwise the original file will be deleted.
set theKind to kind of ((POSIX file this_item) as alias)
if theKind is not equal to "Alias" then
set this_item to quoted form of (item i of theOrigFilePath)
my symLink(aliasPath, this_item)
end if
end tell
end repeat
end if
end repeat
on symLink(aliasPath, aOrigFilePath)
#move to trash the old alias file
set theOldAlias to aliasPath
tell application "Finder"
#make sure we are pointing to an alais that will be deleted and not another symlink file. Otherwise the original file will be deleted.
set theKind to kind of theOldAlias
set theNewFilePath to (POSIX path of (aliasPath)) as string
if theKind is equal to "Alias" then
delete theOldAlias
log "ln -s " & aOrigFilePath & space & (quoted form of theNewFilePath)
#create the symlink
do shell script "ln -s " & aOrigFilePath & space & (quoted form of theNewFilePath)
end if
end tell
end symLink
Pruebe primero use bajo su propio riesgo y todo eso..