SetFileTime.cs 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. namespace SMBLibrary
  9. {
  10. /// <summary>
  11. /// [MS-FSCC] When setting file attributes, a value of -1 indicates to the server that it MUST NOT change this attribute for all subsequent operations on the same file handle.
  12. /// </summary>
  13. public struct SetFileTime
  14. {
  15. public bool MustNotChange;
  16. private DateTime? m_time;
  17. public SetFileTime(bool mustNotChange)
  18. {
  19. MustNotChange = mustNotChange;
  20. m_time = null;
  21. }
  22. public SetFileTime(DateTime? time)
  23. {
  24. MustNotChange = false;
  25. m_time = time;
  26. }
  27. public long ToFileTimeUtc()
  28. {
  29. if (MustNotChange)
  30. {
  31. return -1;
  32. }
  33. else if (!m_time.HasValue)
  34. {
  35. return 0;
  36. }
  37. else
  38. {
  39. return Time.Value.ToFileTimeUtc();
  40. }
  41. }
  42. public DateTime? Time
  43. {
  44. get
  45. {
  46. if (MustNotChange)
  47. {
  48. return null;
  49. }
  50. else
  51. {
  52. return m_time;
  53. }
  54. }
  55. set
  56. {
  57. MustNotChange = false;
  58. m_time = value;
  59. }
  60. }
  61. public static SetFileTime FromFileTimeUtc(long span)
  62. {
  63. if (span > 0)
  64. {
  65. DateTime value = DateTime.FromFileTimeUtc(span);
  66. return new SetFileTime(value);
  67. }
  68. else if (span == 0)
  69. {
  70. return new SetFileTime(false);
  71. }
  72. else if (span == -1)
  73. {
  74. return new SetFileTime(true);
  75. }
  76. else
  77. {
  78. throw new System.IO.InvalidDataException("Set FILETIME cannot be less than -1");
  79. }
  80. }
  81. public static implicit operator DateTime?(SetFileTime setTime)
  82. {
  83. return setTime.Time;
  84. }
  85. public static implicit operator SetFileTime(DateTime? time)
  86. {
  87. return new SetFileTime(time);
  88. }
  89. }
  90. }