# File test/backup/DOSDisk.rb, line 108
  def make_file(filename,contents,file_options={})
  if (file_options[:tokenise]) then
    raise "Tokenisation not currently supported for DOS files"
  else
    return TextFile.new(filename,contents)
  end
end