コード例 #1
0
ファイル: isolatedstoragefile.cs プロジェクト: ydunk/masters
 internal IsolatedStorageFileEnumerator(IsolatedStorageScope scope)
 {
     m_Scope    = scope;
     m_fiop     = IsolatedStorageFile.GetGlobalFileIOPerm(scope);
     m_rootDir  = IsolatedStorageFile.GetRootDir(scope);
     m_fileEnum = new TwoLevelFileEnumerator(m_rootDir);
     Reset();
 }
 internal IsolatedStorageFileEnumerator(IsolatedStorageScope scope)
 {
     this.m_Scope = scope;
     this.m_fiop = IsolatedStorageFile.GetGlobalFileIOPerm(scope);
     this.m_rootDir = IsolatedStorageFile.GetRootDir(scope);
     this.m_fileEnum = new TwoLevelFileEnumerator(this.m_rootDir);
     this.Reset();
 }