SetFileBasicInfo.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* Copyright (C) 2014-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. using System.Collections.Generic;
  9. using Utilities;
  10. namespace SMBLibrary.SMB1
  11. {
  12. /// <summary>
  13. /// SMB_SET_FILE_BASIC_INFO
  14. /// </summary>
  15. public class SetFileBasicInfo : SetInformation
  16. {
  17. public const int Length = 40;
  18. public DateTime? CreationTime;
  19. public DateTime? LastAccessTime;
  20. public DateTime? LastWriteTime;
  21. public DateTime? LastChangeTime;
  22. public ExtendedFileAttributes ExtFileAttributes;
  23. public uint Reserved;
  24. public SetFileBasicInfo()
  25. {
  26. }
  27. public SetFileBasicInfo(byte[] buffer) : this(buffer, 0)
  28. {
  29. }
  30. public SetFileBasicInfo(byte[] buffer, int offset)
  31. {
  32. CreationTime = FileTimeHelper.ReadSetFileTime(buffer, offset + 0);
  33. LastAccessTime = FileTimeHelper.ReadSetFileTime(buffer, offset + 8);
  34. LastWriteTime = FileTimeHelper.ReadSetFileTime(buffer, offset + 16);
  35. LastChangeTime = FileTimeHelper.ReadSetFileTime(buffer, offset + 24);
  36. ExtFileAttributes = (ExtendedFileAttributes)LittleEndianConverter.ToUInt32(buffer, offset + 32);
  37. Reserved = LittleEndianConverter.ToUInt32(buffer, offset + 36);
  38. }
  39. public override byte[] GetBytes()
  40. {
  41. byte[] buffer = new byte[Length];
  42. FileTimeHelper.WriteFileTime(buffer, 0, CreationTime);
  43. FileTimeHelper.WriteFileTime(buffer, 8, LastAccessTime);
  44. FileTimeHelper.WriteFileTime(buffer, 16, LastWriteTime);
  45. FileTimeHelper.WriteFileTime(buffer, 24, LastChangeTime);
  46. LittleEndianWriter.WriteUInt32(buffer, 32, (uint)ExtFileAttributes);
  47. LittleEndianWriter.WriteUInt32(buffer, 36, Reserved);
  48. return buffer;
  49. }
  50. public override SetInformationLevel InformationLevel
  51. {
  52. get
  53. {
  54. return SetInformationLevel.SMB_SET_FILE_BASIC_INFO;
  55. }
  56. }
  57. }
  58. }