OpenFileObject.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 System.IO;
  10. namespace SMBLibrary.Server
  11. {
  12. internal class OpenFileObject
  13. {
  14. private uint m_treeID;
  15. private string m_shareName;
  16. private string m_path;
  17. private object m_handle;
  18. private FileAccess m_fileAccess;
  19. private DateTime m_openedDT;
  20. public OpenFileObject(uint treeID, string shareName, string path, object handle, FileAccess fileAccess)
  21. {
  22. m_treeID = treeID;
  23. m_shareName = shareName;
  24. m_path = path;
  25. m_handle = handle;
  26. m_fileAccess = fileAccess;
  27. m_openedDT = DateTime.Now;
  28. }
  29. public uint TreeID
  30. {
  31. get
  32. {
  33. return m_treeID;
  34. }
  35. }
  36. public string ShareName
  37. {
  38. get
  39. {
  40. return m_shareName;
  41. }
  42. }
  43. public string Path
  44. {
  45. get
  46. {
  47. return m_path;
  48. }
  49. set
  50. {
  51. m_path = value;
  52. }
  53. }
  54. public object Handle
  55. {
  56. get
  57. {
  58. return m_handle;
  59. }
  60. }
  61. public FileAccess FileAccess
  62. {
  63. get
  64. {
  65. return m_fileAccess;
  66. }
  67. }
  68. public DateTime OpenedDT
  69. {
  70. get
  71. {
  72. return m_openedDT;
  73. }
  74. }
  75. }
  76. }