Exemple #1
0
 internal IsolatedStorageFileEnumerator(IsolatedStorageScope scope)
 {
     m_Scope    = scope;
     m_fiop     = IsolatedStorageFile.GetGlobalFileIOPerm(scope);
     m_rootDir  = IsolatedStorageFile.GetRootDir(scope);
     m_fileEnum = new TwoLevelFileEnumerator(m_rootDir);
     Reset();
 }