I want to add this to support write out a file in chunks, while still providing all the best practices for opening and writing to the file: ``` SugarUtils::File.write(filename) do |file| file.write(chunk1) file.write(chunk2) end ```