CreateDisposition.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. namespace SMBLibrary
  2. {
  3. public enum CreateDisposition : uint
  4. {
  5. /// <summary>
  6. /// If the file already exists, it SHOULD be superseded (overwritten).
  7. /// If it does not already exist, then it SHOULD be created.
  8. /// </summary>
  9. FILE_SUPERSEDE = 0x0000,
  10. /// <summary>
  11. /// If the file already exists, it SHOULD be opened rather than created.
  12. /// If the file does not already exist, the operation MUST fail.
  13. /// </summary>
  14. FILE_OPEN = 0x0001,
  15. /// <summary>
  16. /// If the file already exists, the operation MUST fail.
  17. /// If the file does not already exist, it SHOULD be created.
  18. /// </summary>
  19. FILE_CREATE = 0x0002,
  20. /// <summary>
  21. /// If the file already exists, it SHOULD be opened.
  22. /// If the file does not already exist, then it SHOULD be created.
  23. /// This value is equivalent to (FILE_OPEN | FILE_CREATE).
  24. /// </summary>
  25. FILE_OPEN_IF = 0x0003,
  26. /// <summary>
  27. /// If the file already exists, it SHOULD be opened and truncated.
  28. /// If the file does not already exist, the operation MUST fail.
  29. /// The client MUST open the file with at least GENERIC_WRITE access for the command to succeed.
  30. /// </summary>
  31. FILE_OVERWRITE = 0x0004,
  32. /// <summary>
  33. /// If the file already exists, it SHOULD be opened and truncated.
  34. /// If the file does not already exist, it SHOULD be created.
  35. /// The client MUST open the file with at least GENERIC_WRITE access.
  36. /// </summary>
  37. FILE_OVERWRITE_IF = 0x0005,
  38. }
  39. }