You find this example project in your Plugins Download as a Xojo project file within the examples folder: /Main/Convert RBX to zipped RBX
MenuBar MenuBar1
MenuItem UntitledMenu1 = ""
MenuItem FileMenu = "&File"
MenuItem FileQuit = "Quit"
MenuItem EditMenu = "&Edit"
MenuItem EditUndo = "&Undo"
MenuItem UntitledMenu0 = "-"
MenuItem EditCut = "Cu&t"
MenuItem EditCopy = "&Copy"
MenuItem EditPaste = "&Paste"
MenuItem EditClear = "Clear"
End MenuBar
Class App Inherits Application
EventHandler Sub Open()
AutoQuit = true
dim sourceFolder as FolderItem = GetFolderItem("/Applications/REALbasic/Plugins", folderitem.PathTypeShell)
dim destFolder as FolderItem = GetFolderItem("/Applications/REALbasic/PluginsNewStyle", folderitem.PathTypeShell)
if sourceFolder.Exists = false or destFolder.Exists = false then
MsgBox "Please change paths in app.open!"
else
Process sourceFolder, destFolder
end if
End EventHandler
Sub Copy(source as FolderItem, dest as ZipMBS, path as string)
if source.Directory then
path = path+source.Name+"/"
dim c as integer = source.Count
for i as integer = 1 to c
dim f as FolderItem = source.TrueItem(i)
if f=nil then
'ignore
elseif f.Directory then
Copy f, dest, path
else
CopyFile f, dest, path
end if
next
else
CopyFile source, dest, path
end if
End Sub
Sub CopyFile(source as FolderItem, z as ZipMBS, path as string)
dim d as date
dim b as BinaryStream
dim info as ZipFileInfoMBS
b=source.OpenAsBinaryFile(false)
info=new ZipFileInfoMBS
info.SetDate source.ModificationDate
info.ExternalFileAttributes=0
info.InternalFileAttributes=0
info.DosDate=0
dim n as string = path+source.name
z.CreateFile n, info, "", "", "", z.MethodDeflated, z.CompressionBestCompression
if z.Lasterror = 0 then
while not b.EOF
z.Write b.Read(100000)
wend
z.CloseFile
end if
End Sub
Sub CopyRoot(source as FolderItem, dest as ZipMBS)
dim c as integer = source.Count
for i as integer = 1 to c
dim f as FolderItem = source.TrueItem(i)
if f<>nil and f.Directory then
Copy f, dest, ""
end if
next
End Sub
Sub Process(folder as FolderItem, destfolder as FolderItem)
dim files() as FolderItem
dim c as integer = folder.Count
for i as integer = 1 to c
files.append folder.TrueItem(i)
next
for each f as FolderItem in files
if f<>Nil and f.Exists and f.Visible and f.Directory = false then
if Right(f.Name,4) = ".rbx" then
ProcessFile f, destfolder
end if
end if
next
End Sub
Sub ProcessFile(file as FolderItem, destfolder as FolderItem)
dim destfile as FolderItem = destfolder.Child(file.Name)
dim v as VirtualVolume = file.OpenAsVirtualVolume
if v = nil then
MsgBox file.Name+" is not a valid plugin!?"
quit
end if
System.DebugLog destfile.NativePath
dim z as new ZipMBS(destfile, ZipMBS.AppendStatusCreate)
if z.Lasterror <> 0 then
MsgBox "Failed to create zip file: "+destfile.NativePath
else
CopyRoot v.Root, z
z.Close("")
end if
End Sub
End Class