mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 05:13:18 +08:00
16 lines
271 B
C#
16 lines
271 B
C#
using CPF.Mac.ObjCRuntime;
|
|
using System;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
[Since(4, 0)]
|
|
[Flags]
|
|
public enum NSDirectoryEnumerationOptions : ulong
|
|
{
|
|
SkipsNone = 0x0,
|
|
SkipsSubdirectoryDescendants = 0x1,
|
|
SkipsPackageDescendants = 0x2,
|
|
SkipsHiddenFiles = 0x4
|
|
}
|
|
}
|