Axiom.FileSystem.FileSystemArchive.Load C# (CSharp) Метод

Load() публичный Метод

public Load ( ) : void
Результат void
		public override void Load()
		{
			_basePath = Path.GetFullPath( Name ) + Path.DirectorySeparatorChar;
			IsReadOnly = false;

			SafeDirectoryChange( _basePath, () =>
											{
												try
												{

#if !( XBOX || XBOX360 || ANDROID )
													File.Create( _basePath + @"__testWrite.Axiom", 1, FileOptions.DeleteOnClose );
#else
													File.Create(_basePath + @"__testWrite.Axiom", 1 );
#endif
												}
												catch ( Exception )
												{
													IsReadOnly = true;
												}
											} );

		}