xxxxxxxxxx
FilePath = "C:\temp\TempSubdirectory\my.txt"
TextWindow.WriteLine("Write Content = " +
File.WriteLine(FilePath, 1, "Shakespeare was a great writer."))
TextWindow.WriteLine("Append Content = " +
File.AppendContents(FilePath, "He wrote many plays."))
TextWindow.WriteLine("Read Content = " +
File.ReadContents(FilePath))