Un modo per impostare / aggiungere tag su un file con Applescript in Mavericks?


9

Sto cercando di spostare alcuni dei miei script dalle etichette ai tag in Mavericks, ma non riesco a trovare un modo per impostare / aggiungere tag con Applescript.

Qualcuno che sa come farlo? Per quanto posso immaginare, i tag non sono in realtà nuovi, solo nuovi in ​​termini di essere una parte più centrale del Finder aggiornato.

Risposte:


7

Puoi usare xattr. Questo copia i tag da file1 a file2:

xattr -wx com.apple.metadata:_kMDItemUserTags "$(xattr -px com.apple.metadata:_kMDItemUserTags file1)" file2
xattr -wx com.apple.FinderInfo "$(xattr -px com.apple.FinderInfo file1)" file2

I tag sono memorizzati in un elenco di proprietà come un singolo array di stringhe:

$ xattr -p com.apple.metadata:_kMDItemUserTags file3|xxd -r -p|plutil -convert xml1 - -o -
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
    <string>Red
6</string>
    <string>aa</string>
    <string>Orange
7</string>
    <string>Yellow
5</string>
    <string>Green
2</string>
    <string>Blue
4</string>
    <string>Purple
3</string>
    <string>Gray
1</string>
</array>
</plist>

I tag per i colori hanno valori come Red\n6(dove \nè un avanzamento riga).

Se il flag kColor in com.apple.FinderInfo non è impostato, Finder non mostra i cerchi per i colori accanto ai file. Se il flag kColor è impostato su arancione e il file ha il tag rosso, Finder mostra sia i cerchi rossi che quelli arancioni. Puoi impostare il flag kColor con AppleScript:

do shell script "xattr -w com.apple.metadata:_kMDItemUserTags '(\"Red\\n6\",\"new tag\")' ~/desktop/file4"
tell application "Finder" to set label index of file "file4" of desktop to item 1 of {2, 1, 3, 6, 4, 5, 7}

'("Red\n6","new tag")' è una sintassi plist vecchio stile per questo:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
    <string>Red
6</string>
    <string>new tag</string>
</array>
</plist>

xattr -p com.apple.FinderInfo file|head -n1|cut -c28-29stampa il valore dei bit utilizzati per il flag kColor. Il rosso è C, l'arancione è E, il giallo è A, il verde è 4, il blu è 8, il magenta è 6 e il grigio è 2. (Il flag che aggiungerebbe 1 ai valori non viene utilizzato in OS X.)


sono le "tag tags" .PNG o grafica resa cromatica? impossibile trovare qualcosa come "C.png" sul disco rigido :)

1

La risposta è stata pubblicata nell'elenco utenti di Applescript:

http://lists.apple.com/archives/applescript-users/2015/Jan/msg00193.html


citazione dal codice pagina scritto da Shane Stanley

Puoi farlo abbastanza facilmente con AppleScriptObjC. Ecco i gestori per recuperare tag, impostare tag e aggiungere tag:

use scripting additions
use framework "Foundation"

on returnTagsFor:posixPath -- get the tags
    set aURL to current application's |NSURL|'s fileURLWithPath:posixPath -- make URL
    set {theResult, theTags} to aURL's getResourceValue:(reference) forKey:(current application's NSURLTagNamesKey) |error|:(missing value)
    if theTags = missing value then return {} -- because when there are none, it returns missing value
    return theTags as list
end returnTagsFor:

on setTags:tagList forPath:posixPath -- set the tags, replacing any existing tags
    set aURL to current application's |NSURL|'s fileURLWithPath:posixPath -- make URL
    aURL's setResourceValue:tagList forKey:(current application's NSURLTagNamesKey) |error|:(missing value)
end setTags:forPath:

on addTags:tagList forPath:posixPath -- add to existing tags
    set aURL to current application's |NSURL|'s fileURLWithPath:posixPath -- make URL
    -- get existing tags
    set {theResult, theTags} to aURL's getResourceValue:(reference) forKey:(current application's NSURLTagNamesKey) |error|:(missing value)
    if theTags  missing value then -- add new tags
        set tagList to (theTags as list) & tagList
        set tagList to (current application's NSOrderedSet's orderedSetWithArray:tagList)'s allObjects() -- delete any duplicates
    end if
    aURL's setResourceValue:tagList forKey:(current application's NSURLTagNamesKey) |error|:(missing value)
end addTags:forPath:

Se li salvi in ​​una libreria di script, puoi anche usarli da Mavericks.

- Shane Stanley www.macosxautomation.com/applescript/apps/

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.