Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0187-directory_contents
directory_contents = function(directory)
	contents = {}
	local filenames = App.files(directory)
	for _,filename in ipairs(filenames) do
		local file_info = App.file_info(directory..filename)
		if file_info.type == 'file' then
			table.insert(contents, filename)
		end
	end
	table.sort(contents)
	return contents
end