1234567891011121314151617181920212223242526272829303132333435363738 |
- //------------------------------------------------------------
- // Game Framework
- // Copyright © 2013-2021 loyalsoft. All rights reserved.
- // Homepage: http://www.game7000.com/
- // Feedback: http://www.game7000.com/
- //------------------------------------------------------------
- using System;
- namespace GameFramework.FileSystem
- {
- /// <summary>
- /// 文件系统访问方式。
- /// </summary>
- [Flags]
- public enum FileSystemAccess : byte
- {
- /// <summary>
- /// 未指定。
- /// </summary>
- Unspecified = 0,
- /// <summary>
- /// 只可读。
- /// </summary>
- Read = 1,
- /// <summary>
- /// 只可写。
- /// </summary>
- Write = 2,
- /// <summary>
- /// 可读写。
- /// </summary>
- ReadWrite = 3
- }
- }
|