iphone Programming Glossary: file.writealltext
Write to a File in Monotouch http://stackoverflow.com/questions/1829954/write-to-a-file-in-monotouch string path Environment.GetFolderPath Environment.SpecialFolder.Personal string filePath Path.Combine path out.txt File.WriteAllText will create a file and then write text to it. If the file already exists File.WriteAllText will overwrite it. File.WriteAllText.. Path.Combine path out.txt File.WriteAllText will create a file and then write text to it. If the file already exists File.WriteAllText will overwrite it. File.WriteAllText filePath Howdy world. Now we prove it worked by reading the contents of the file and.. will create a file and then write text to it. If the file already exists File.WriteAllText will overwrite it. File.WriteAllText filePath Howdy world. Now we prove it worked by reading the contents of the file and then printing them to the console.....
|