The quoting of StefanK is tricky because it doesn’t use quoted form so if a path contains a single quote it will break down.
set allAliasFiles to paragraphs of (do shell script "mdfind \"kMDItemKind == 'Alias'\"")
repeat with i from 1 to count allAliasFiles
set item i of allAliasFiles to quoted form of item i of allAliasFiles
end repeat
tell AppleScript
set oldTIDs to text item delimiters
set text item delimiters to space
set bashList to allAliasFiles as string
set text item delimiters to oldTIDs
end tell
set brokenAliases to do shell script "/Users/admin/bin/AliasPath -b " & aliasFilePaths
set fileDescriptor to open for access ((path to desktop as text) & "FinderBrokenAliasesLast.txt") with write permission
write brokenAliases to fileDescriptor
close access fileDescriptor
At first I had to edit a bit your code because the variable aliasFilePaths was not defined.
So I edited the main instruction as :
set brokenAliases to do shell script "/Users/admin/bin/AliasPath -b " & bashList --allAliasFiles
Alas when I tested it I got :
→ error “/Users/???/Library/Speech/Speakable Items/Application Speakable Items/Safari/Target Application Alias: The file “Target Application Alias” couldn’t be opened because there is no such file.
2017-07-26 14:53:54.036 AliasPath[2136:2454891] *** Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘*** -[NSURL initFileURLWithPath:]: nil string parameter’
*** First throw call stack:
(
0 CoreFoundation 0x00007fffa90b157b __exceptionPreprocess + 171
1 libobjc.A.dylib 0x00007fffbe30a1da objc_exception_throw + 48
2 CoreFoundation 0x00007fffa912ec55 +[NSException raise:format:] + 197
3 Foundation 0x00007fffaaa69e8a -[NSURL(NSURL) initFileURLWithPath:] + 131
4 Foundation 0x00007fffaaa69df1 +[NSURL(NSURL) fileURLWithPath:] + 45
5 AliasPath 0x0000000103a287cf main + 863
6 libdyld.dylib 0x00007fffbebeb235 start + 1
7 ??? 0x00000000000001b2 0x0 + 434
)
libc++abi.dylib: terminating with uncaught exception of type NSException” number 1006
I’m really surprised because when I run :
set POSIXPath to "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/Safari/Target Application Alias"
set maybe to POSIX file POSIXPath
tell application "System Events"
exists disk item POSIXPath
exists maybe
end tell
tell application "Finder"
exists maybe
end tell
set maybeAlias to (maybe as text) as alias
I get :
CAUTION this is not a script but an history
tell application "System Events"
exists disk item "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/Safari/Target Application Alias"
--> false
exists file "SSD 500:Users:??????????:Library:Speech:Speakable Items:Application Speakable Items:Safari:Target Application Alias"
--> true
end tell
tell application "Finder"
exists file "SSD 500:Users:??????????:Library:Speech:Speakable Items:Application Speakable Items:Safari:Target Application Alias"
--> false
Résultat :
error "Le fichier SSD 500:Users:??????????:Library:Speech:Speakable Items:Application Speakable Items:Safari:Target Application Alias est introuvable." number -43 from "SSD 500:Users:??????????:Library:Speech:Speakable Items:Application Speakable Items:Safari:Target Application Alias"
Yes, you read well : the file doesn’t exist when we test its POSIX path but it does when we test the POSIX file.
And there is no such alias.
Given that I’m not too puzzled by the returned error.
I guess that the case “the file doesn’t exist” is not filtered in the CLI.
Yvan KOENIG running Sierra 10.12.6 in French (VALLAURIS, France) mercredi 26 juillet 2017 15:17:06
Has anyone else tested StefanK’s AppleScriptObjC version?
I also run into that error, Yvan.
It seems there’s a CR (^M) at the end of those files named ‘Target Application Alias’. Move one of these to the shell and press tab to complete it.
Eventually I came up with this. First time I ran it in AppleScript Editor, I got the error above. The second time it ran successfully and I haven’t gotten my head around that. If I run it from Quicksilver it does fine the first round, always.
-- http://macscripter.net/viewtopic.php?id=45852
-- https://github.com/rptb1/aliasPath
set l to do shell script "mdfind \"kMDItemKind == 'Alias'\""
set x to "/usr/local/bin/aliasPath"
set y to ""
set n to ""
repeat with e in paragraphs of l
log e
set p to POSIX file e
log p
try
tell application "Finder"
set a to p as alias
if original item of a exists then
set y to y & e & linefeed
else
--set n to n & e & linefeed
set o to do shell script x & space & quoted form of e
set n to n & e & linefeed & o & linefeed & linefeed
log "***try"
end if
end tell
on error
--set n to n & e & linefeed
set o to do shell script x & space & quoted form of e
set n to n & e & linefeed & o & linefeed & linefeed
log "***error"
end try
end repeat
set f to open for access (path to desktop as text) & "Finder Broken Aliases" with write permission
write n as text to f
close access f
AFAIR, the only differences from the one I posted above are, set x and o and reset n.
I checked GetFileInfo (IIRC from dev tools) and fileinfo (from osxutils) but none get the original path like aliasPath does. I rather use a builtin instead of an additional binary, or, if I’d use a supported system, StefanK’s AppleScriptObjC version. Oh well…
I think that understood where the “missing” aliases are coming from.
As I wrote, the mechanical HD is used as a backup of the data stored on the boot drive named “SSD500”
There is an alias named “Target Application Alias” in this mechanical HD.
On this device, the alias is stored as “/Users/???/Library/Speech/Speakable Items/Application Speakable Items/Safari/Target Application Alias”
But, as the script is executed from the device named “SSD 500”, the system treat this path as one pointing to an item stored on “SSD 500”, in Hfs format it is “SSD 500:Users:???:Library:Speech:Speakable Items:Application Speakable Items:Safari:Target Application Alias”
although it’s real location is “Macintosh HD:Users:???:Library:Speech:Speakable Items:Application Speakable Items:Safari:Target Application Alias”
Worse, there is something resembling to what msh described: when I search for it with Spotlight, the filename appear as it there was a linefeed or a return at its very end. Curious, when I open the folder containing it, the name appears as if the linefeed or return was gone.
As I don’t see how to re-attribute the path to the correct volume, I think that the problem would be solved by the introduction of instructions filtering the case “file doesn’t exist” in the CLI.
Yvan KOENIG running Sierra 10.12.6 in French (VALLAURIS, France) mercredi 26 juillet 2017 19:57:13
set allAliasFiles to (do shell script "mdfind \"kMDItemKind == 'Alias'\"" without altering line endings)
set saveTID to AppleScript's text item delimiters
set AppleScript's text item delimiters to {linefeed}
set allAliasFiles to text items of allAliasFiles
set AppleScript's text item delimiters to saveTID
Good idea Shane but it doesn’t solve the problem.
Yesterdays, when I faced the problem I ran this extract of the main script :
set allAliasFiles to (do shell script "mdfind \"kMDItemKind == 'Alias'\"")
set saveTID to AppleScript's text item delimiters
set AppleScript's text item delimiters to {linefeed}
set allAliasFiles to text items of allAliasFiles
set AppleScript's text item delimiters to saveTID
log (get count allAliasFiles)
allAliasFiles
and the returned count was 1.
New attempt trying to split upon return :
set allAliasFiles to (do shell script "mdfind \"kMDItemKind == 'Alias'\"")
set saveTID to AppleScript's text item delimiters
set AppleScript's text item delimiters to {return}
set allAliasFiles to text items of allAliasFiles
set AppleScript's text item delimiters to saveTID
log (get count allAliasFiles)
allAliasFiles
This time, the count was 432 and the list contained :
Not surprising running your original script fails due to the character “'” available in some file names.
With the code modified by DJ,
set allAliasFiles to paragraphs of (do shell script "mdfind \"kMDItemKind == 'Alias'\"")
set {TID, text item delimiters} to {text item delimiters, "' '"}
set aliasFilePaths to "'" & (allAliasFiles as text) & "'"
set text item delimiters to TID
set brokenAliases to do shell script "/Users/admin/bin/AliasPath -bo " & aliasFilePaths
set fileDescriptor to open for access ((path to desktop as text) & "FinderBrokenAliases.txt") with write permission
write brokenAliases to fileDescriptor
close access fileDescriptor
I got :
--> error "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/System Preferences/Target Application Alias is not a valid path" number 1
in which the named path is the first of the listed aliases.
As one of the annoying aliases is:
/Users/???/Library/Speech/Speakable Items/Application Speakable Items/Safari/Target Application Alias
I guess that it may exist on your machine
An other one supposed to be available is :
/Users/???/Library/Speech/Speakable Items/Application Speakable Items/AppleScript Editor/Target Application Alias
Here, most of these “annoying” aliases are dated 2012/07/30, some are dated 2013/03/15.
So I don’t know if they are really useful at this time.
They exist for these applications :
AppleScript Editor
Finder
HexEdit
ImageWell
Internet Explorer
iTunes
JavaApplicationStub
Mail
Numbers
Pages
Safari
System Preferences
VLC
Xcode
If they don’t exist for you, I may send you one of them for testing.
Yvan KOENIG running Sierra 10.12.6 in French (VALLAURIS, France) jeudi 27 juillet 2017 12:49:40
The explicit Spotlight search (the mdfind line) is not needed anymore in AliasPath1.1, the CLI performs the search on Cocoa level. Delete the first 4 lines and the parameter & aliasFilePaths in the next line.
And if your file names contain a lot of UTF 8 characters you have to write the text to disk UTF8 encoded.
write brokenAliases to fileDescriptor as «class utf8»
set brokenAliases to do shell script "/Users/admin/bin/AliasPath -bo"
set fileDescriptor to open for access ((path to desktop as text) & "FinderBrokenAliases.txt") with write permission
write brokenAliases to fileDescriptor
close access fileDescriptor
If you need extraneous details, you may ask directly thru my personal mailbox.
On my side I have a version doing the job but using GUIscripting. With 432 path returned by mdfind the entire process took 347 seconds.
set startTime to current date
tell application "Finder"
(*
set theWindows to every window
repeat with awindow in theWindows
# Close every info window once so we will not have to do it in the handler
if class of awindow is information window then close awindow
end repeat
*)
close every window
end tell
set l to paragraphs of (do shell script "mdfind \"kMDItemKind == 'Alias'\"")
set y to ""
set n to ""
set pass to 0
repeat with e in l
set pass to pass + 1
set p to POSIX file e
try
tell application "Finder"
try
set a to p as alias
on error
# Retry after adding return at end of the path
set e to e & return
tell me to set p to POSIX file e
set a to p as alias
end try
set theOriginal to my getOriginal(e) # here e is a POSIX path
if original item of a exists then
--set theOriginal to my getOriginal(e) # here e is a POSIX path
set y to y & e & tab & theOriginal & linefeed # Add path2alias & path2original in y
else
-- set theOriginal to my getOriginal(e) # here e is a POSIX path
set n to n & e & tab & theOriginal & linefeed # Add path2alias & path2original in n
log "***try"
end if
end tell
on error
set n to n & e & tab & "***error" & linefeed # Here, I get that with aliases appearing as greyed in the Finder window
--log "***error"
end try
--if pass = 50 then exit repeat # active only during tests
end repeat
# Save the list of broken aliases
set f to open for access (path to desktop as text) & "FinderBrokenAliasesXXX.txt" with write permission
write n as text to f
close access f
# Save the list of correct aliases
set f to open for access (path to desktop as text) & "FinderCorrectAliasesXXX.txt" with write permission
write y as text to f
close access f
set itsDuration to (current date) - startTime
tell application (path to frontmost application as string) to display dialog "It tooks : " & itsDuration & " seconds"
on getOriginal(brokenAliasPOSIXPath)
set aFile to POSIX file brokenAliasPOSIXPath
tell application "Finder"
select aFile # open the window of the folder containing the alias
set aFile to aFile as text
repeat 10 times
if ((get selection) as text) = aFile then exit repeat # Wait for the window containing the file
delay 0.2
end repeat
end tell # Finder
tell application "System Events" to tell process "Finder"
set frontmost to true
keystroke "i" using {command down} # Ask for Info window
tell application "Finder"
repeat 10 times # Wait for the new info window
delay 0.2
if (class of window 1) is information window then exit repeat
end repeat
end tell # Finder
tell window 1
--class of UI elements --> {scroll area, button, button, button, image, static text}
tell scroll area 1
--class of UI elements --> {image, static text, static text, static text, static text, scroll area, UI element, static text, static text, static text, static text, static text, static text, static text, static text, static text, static text, static text, static text, static text, static text, button, checkbox, UI element, static text, static text, UI element, static text, text field, checkbox, UI element, static text, UI element, static text, UI element, static text, static text, scroll area, button, button, menu button, checkbox}
set theTexts to value of static texts
repeat with i from 1 to count theTexts
if theTexts's item i starts with "/" then
set theOriginal to theTexts's item i
log "got the original : " & theOriginal
exit repeat
end if
end repeat
end tell
-- subrole of buttons --> {"AXCloseButton", "AXZoomButton", "AXMinimizeButton"}
click button 1 # Close the Infos window
end tell # window 1
end tell # System Events …
tell application "Finder" to close window 1
if i = (count theTexts) then set theOriginal to "** no original available **" # The window doesn't display an original, build a fake string
return theOriginal --> "/Important/Téléchargements/ téléchargés pour Leopard/maj_Apple"
end getOriginal
#=====
This time I am satisfied because it no longer rely upon a localized string and it treat the “annoying” pathnames (using brute force).
Yvan KOENIG running Sierra 10.12.6 in French (VALLAURIS, France) jeudi 27 juillet 2017 13:58:44
(*
http://www.macscripter.net/post.php?tid=45852
*)
set brokenAliases to do shell script "/Users/admin/bin/AliasPath -bo"
# Replace the extraneous ending linefeed by the character "¶"
set brokenAliases to my remplace(brokenAliases, return & tab, "¶" & tab)
set fileDescriptor to open for access ((path to desktop as text) & "FinderBrokenAliases.txt") with write permission
# Write starting from 0 (delete possible old content)
set eof of fileDescriptor to 0
write brokenAliases to fileDescriptor
close access fileDescriptor
#=====
(*
replaces every occurences of d1 by d2 in the text t
*)
on remplace(t, d1, d2)
local oTIDs, l
set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d1}
set l to text items of t
set AppleScript's text item delimiters to d2
set t to l as text
set AppleScript's text item delimiters to oTIDs
return t
end remplace
#=====
It replace in the flow of datas saved the “annoying” return characters by the character “¶”.
It contains an instruction forcing the script to drop the old content if the txt file exist when we start the script.
Yvan KOENIG running Sierra 10.12.6 in French (VALLAURIS, France) jeudi 27 juillet 2017 22:01:10
In fact there were six broken alias with the ending returns but I zipped 2 of them to try to see if they are really useful at this time.
It seems that they aren’t useful but I play safe.
I turn the occasion to account that I missed something in a Shane’s proposal.
He carefully added some words at the mdfind instruction.
His version was :
set allAliasFiles to (do shell script "mdfind \"kMDItemKind == 'Alias'\"" without altering line endings)
Thanks to “without altering line endings” the ending return characters were no longer dropped.
Yvan KOENIG running Sierra 10.12.6 in French (VALLAURIS, France) vendredi 28 juillet 2017 10:20:02
What script do you mean? When posting the latest version of the CLI I didn’t post a script and the CLI itself definitely does not create return & tab sequences with -bo.
(* http://www.macscripter.net/post.php?tid=45852 *)
# Use the AliasPath 1.1 CLI from :http://klieme.com/Downloads/misc/AliasPath1.1.zip, http://www.macscripter.net/viewtopic.php?id=45852&p=2
set brokenAliases to do shell script "/Users/admin/bin/AliasPath -bo"
# Replace the extraneous ending linefeed by the character "¶"
set brokenAliases to my remplace(brokenAliases, return & tab, "¶" & tab)
set fileDescriptor to open for access ((path to desktop as text) & "FinderBrokenAliases.txt") with write permission
# Write starting from 0 (delete possible old content)
set eof of fileDescriptor to 0 # ADDED
write brokenAliases to fileDescriptor
close access fileDescriptor
#=====
(*
replaces every occurences of d1 by d2 in the text t
*)
on remplace(t, d1, d2)
local oTIDs, l
set {oTIDs, AppleScript's text item delimiters} to {AppleScript's text item delimiters, d1}
set l to text items of t
set AppleScript's text item delimiters to d2
set t to l as text
set AppleScript's text item delimiters to oTIDs
return t
end remplace
If I disable the instruction : set brokenAliases to my remplace(brokenAliases, return & tab, “¶” & tab) I get the first group of datas posted in my late message.
If I enable it, I get the second group of datas.
Guess why there are some ¶ characters in the second group.
Your CLI doesn’t explicitly create such datas.
It’s just that when it get the path
"/Volumes/Macintosh HD/Users/???/Library/Speech/Speakable Items/Application Speakable Items/Pages/Target Application Alias
" (Yes, with a return character at end),
it add a tab and “/Applications/Utilities/AppleScript Editor.app”
I don’t understand why you are surprised. You edited the code of the CLI to achieve that, no less, no more.
If I run the beginning of the “old” script :
set allAliasFiles to (do shell script "mdfind \"kMDItemKind == 'Alias'\"" without altering line endings)
set {TID, text item delimiters} to {text item delimiters, linefeed}
set allAliasFiles to text items of allAliasFiles
set text item delimiters to TID
allAliasFiles
I get :
{"/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/System Preferences/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/VLC/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/Xcode/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/iTunes/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/HexEdit/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/Finder/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/ImageWell/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/JavaApplicationStub/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/Mail/Target Application Alias
", "/Users/??????????/Library/Speech/Speakable Items/Application Speakable Items/Safari/Target Application Alias
", "/Library/Fonts/Monospaced ƒ/Andale Mono.ttf", …
Which show the aliases safe ones as well as broken ones with their ending return.
I rebuilt the script using your first version of the CLI :
set allAliasFiles to (do shell script "mdfind \"kMDItemKind == 'Alias'\"" without altering line endings)
set {TID, text item delimiters} to {text item delimiters, return}
set allAliasFiles to text items of allAliasFiles
set text item delimiters to TID
repeat with i from 1 to count allAliasFiles
set item i of allAliasFiles to quoted form of item i of allAliasFiles
end repeat
tell AppleScript
set oldTIDs to text item delimiters
set text item delimiters to space
set bashList to allAliasFiles as string
set text item delimiters to oldTIDs
end tell
tell application "System Events"
set maybe to exists file "/Users/admin/bin/AliasPath0"
log maybe
end tell
set brokenAliases to do shell script "/Users/admin/bin/AliasPath0 -b " & bashList
set fileDescriptor to open for access ((path to desktop as text) & "FinderBrokenAliasesCli0.txt") with write permission
set eof of fileDescriptor to 0
write brokenAliases to fileDescriptor
close access fileDescriptor
As you see, the original version of the CLI is named AliasPath0 here so that I may have two versions available for tests.
Alas, this version returns an empty text file.
Yvan KOENIG running Sierra 10.12.6 in French (VALLAURIS, France) vendredi 28 juillet 2017 12:11:17