-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathAppleScriptMoveFiles_ShellMethod.calc
138 lines (132 loc) · 4.69 KB
/
AppleScriptMoveFiles_ShellMethod.calc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
Let ([
path = Get ( FilePath ) ;
dbName = Middle ( path ; Position ( path ; "/" ; Length ( path ) ; -1 ) + 1 ; 999 ) ;
fieldSplit = Substitute ( resultFieldName ; "::" ; ¶ ) ;
tableName = GetValue ( fieldSplit ; 1 ) ;
fieldName = GetValue ( fieldSplit ; 2 ) ;
fmpVersion = "FileMaker Pro" & If ( Position ( Get ( ApplicationVersion ) ; "ProAdvanced" ; 1 ; 1 ) ; " Advanced" )
];
"set resultError to null¶
set filePaths to trimLinesRight(\"" & filePaths & "\")¶
set destinationPath to stripStartupDisk(trimLinesRight(\"" & destinationPath & "\"))¶
set destinationFile to POSIX file destinationPath¶
set createDestination to " & GetAsBoolean ( createDestination ) & " as boolean¶
set copySourceFiles to " & GetAsBoolean ( copySourceFiles ) & " as boolean¶
¶
-- Create or validate directory¶
if createDestination then¶
do shell script \"mkdir -p \" & quoted form of (POSIX path of destinationFile)¶
else if not fileExists(destinationPath) then¶
set resultFinal to \"Error: destinationPath not valid (\" & POSIX path of destinationFile & \")\"¶
setField(\"" & dbName & "\", \"" & tableName & "\", \"" & fieldName & "\", resultFinal)¶
return¶
end if¶
¶
set fileList to paragraphs of filePaths¶
set resultPathList to {}¶
¶
-- Move each file¶
repeat with theFileString in fileList¶
try¶
set theFile to POSIX file stripStartupDisk(theFileString)¶
set oldPath to POSIX path of theFile¶
tell application \"Finder\" to set fileName to name of file theFile¶
set newPath to destinationPath & fileName¶
if copySourceFiles then¶
set shellScript to \"cp -n \" & quoted form of oldPath & \" \" & quoted form of newPath¶
else¶
set shellScript to \" mv -n \" & quoted form of oldPath & \" \" & quoted form of newPath¶
end if¶
do shell script shellScript¶
set end of resultPathList to newPath¶
on error errMsg number errNum¶
-- Don't worry if file already exists¶
if errNum is not -15267 then¶
set resultError to \"Error \" & errNum & \": \" & errMsg¶
end if¶
end try¶
end repeat¶
¶
-- Determine result¶
if resultError is not null then¶
set resultFinal to resultError¶
else¶
set resultFinal to my fileListToText(resultPathList, true)¶
end if¶
¶
-- Send result to FileMaker¶
setField(\"" & dbName & "\", \"" & tableName & "\", \"" & fieldName & "\", resultFinal)¶
¶
-- Handler: Returns list of files as return-delimited text string¶
-- addStartupDrive allows prepending of disk name to each path¶
to fileListToText(theList, addStartupDrive)¶
set theText to \"\"¶
tell application \"System Events\"¶
set hdName to get name of startup disk¶
end tell¶
repeat with i in theList¶
--set myPath to POSIX path of (i as alias)¶
set myPath to POSIX path of i¶
if addStartupDrive is true then set myPath to hdName & (myPath as text)¶
set theText to theText & myPath & return¶
end repeat¶
return trimLinesRight(theText)¶
end fileListToText¶
¶
--Handler: Sets FileMaker field value¶
on setField(databaseName, tableName, fieldName, theValue)¶
tell application \"" & fmpVersion & "\"¶
tell database (databaseName as text)¶
tell table (tableName as text)¶
set field fieldName to theValue¶
end tell¶
end tell¶
end tell¶
end setField¶
¶
-- Handler: Returns path as text with startup disk removed¶
to stripStartupDisk(thePath)¶
set pathText to thePath as text¶
tell application \"System Events\"¶
set hdName to name of startup disk¶
end tell¶
set hdLen to length of hdName¶
set colonPos to offset of \":\" in pathText¶
if colonPos is greater than 0 then set pathText to text (colonPos + 1) thru -1 of pathText¶
if character 1 of pathText is equal to \"/\" then set pathText to text 2 thru -1 of pathText¶
if text 1 thru hdLen of pathText is equal to hdName then¶
set pathText to text (hdLen + 1) thru -1 of pathText¶
end if¶
return pathText¶
end stripStartupDisk¶
¶
-- Handler: Returns true if file or folder exists¶
on fileExists(fileOrFolderPOSIXPath)¶
try¶
alias (POSIX file fileOrFolderPOSIXPath)¶
return true¶
on error¶
return false¶
end try¶
end fileExists¶
¶
-- Handler: Removes trailing newlines¶
to trimLinesRight(theText)¶
repeat while theText ends with return¶
set theText to theText's text 1 thru -2¶
end repeat¶
return theText¶
end trimLinesRight"
)
/* —————————————————————————————— //
NAME:
AppleScriptMoveFiles ( resultFieldName ; filePaths ; destinationPath ; createDestination ; copySourceFiles )
PURPOSE:
Moves files to new directory
EXAMPLES:
NOTES:
Will NOT override file if it already exists in location.
Files not moved/copied will not be listed in the result.
HISTORY:
Created: 2011-Jun-28 11h15 PST — Donovan A. Chandler
*/