write gSeparator to inLogFileRef
end if
- tell application "Finder" to set theSubFolders to every folder of inFolder
+ tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data"
repeat with theFolder in theSubFolders
BuildProjects(inLogFileRef, theFolder, inTarget, inRebuild)
end repeat
on ExportProjects(inFolder)
global theProjectCount, theProjectSuccessCount
+ tell application "Finder" to update inFolder
+
try
tell application "Finder" to set theProject to ((the first file of inFolder whose name ends with gProjectSuffix) as string)
on error
end tell
end if
- tell application "Finder" to set theSubFolders to every folder of inFolder
+ tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data"
repeat with theFolder in theSubFolders
ExportProjects(theFolder)
end repeat
on ImportProjects(inFolder)
global theXmlCount, theXmlSuccessCount
+ tell application "Finder" to update inFolder
+
try
tell application "Finder" to set theXml to ((the first file of inFolder whose name ends with gXmlSuffix) as string)
on error
end tell
end if
- tell application "Finder" to set theSubFolders to every folder of inFolder
+ tell application "Finder" to set theSubFolders to every folder of inFolder whose name does not end with " Data"
repeat with theFolder in theSubFolders
ImportProjects(theFolder)
end repeat