1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
- *
- * You can redistribute this program and/or modify it under the terms of
- * the GNU Lesser Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- */
- using System;
- namespace SMBLibrary
- {
- /// <summary>
- /// [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.
- /// </summary>
- public struct SetFileTime
- {
- public bool MustNotChange;
- private DateTime? m_time;
- public SetFileTime(bool mustNotChange)
- {
- MustNotChange = mustNotChange;
- m_time = null;
- }
- public SetFileTime(DateTime? time)
- {
- MustNotChange = false;
- m_time = time;
- }
- public long ToFileTimeUtc()
- {
- if (MustNotChange)
- {
- return -1;
- }
- else if (!m_time.HasValue)
- {
- return 0;
- }
- else
- {
- return Time.Value.ToFileTimeUtc();
- }
- }
- public DateTime? Time
- {
- get
- {
- if (MustNotChange)
- {
- return null;
- }
- else
- {
- return m_time;
- }
- }
- set
- {
- MustNotChange = false;
- m_time = value;
- }
- }
- public static SetFileTime FromFileTimeUtc(long span)
- {
- if (span > 0)
- {
- DateTime value = DateTime.FromFileTimeUtc(span);
- return new SetFileTime(value);
- }
- else if (span == 0)
- {
- return new SetFileTime(false);
- }
- else if (span == -1)
- {
- return new SetFileTime(true);
- }
- else
- {
- throw new System.IO.InvalidDataException("Set FILETIME cannot be less than -1");
- }
- }
- public static implicit operator DateTime?(SetFileTime setTime)
- {
- return setTime.Time;
- }
- public static implicit operator SetFileTime(DateTime? time)
- {
- return new SetFileTime(time);
- }
- }
- }
|