Does Unity have file system functions?

Does Unity have file system functions? Like opening files for saving games or user preferences?

PlayerPrefs

You can use

import System.IO;

var sw : StreamWriter = new StreamRider( filename );

The docu mentation for those is available from Microsoft

Also see StreamReader.