Jypeli  5
The simple game programming library
Files.cs
Siirry tämän tiedoston dokumentaatioon.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace Jypeli
7 {
8  public partial class FileManager
9  {
10  public abstract IList<string> GetFileList();
11  public abstract bool Exists( string fileName );
12 
13  public StorageFile Create( string fileName )
14  {
15  return Open( fileName, true );
16  }
17 
18  public abstract StorageFile Open( string fileName, bool write );
19  public abstract void Delete( string fileName );
20  }
21 }
abstract StorageFile Open(string fileName, bool write)
abstract bool Exists(string fileName)
abstract IList< string > GetFileList()
StorageFile Create(string fileName)
Definition: Files.cs:13
abstract void Delete(string fileName)