SharpCifs.Smb.SmbFile.CreateTime C# (CSharp) Method

CreateTime() public method

Retrieve the time this SmbFile was created.
Retrieve the time this SmbFile was created. The value returned is suitable for constructing a System.DateTime object (i.e. seconds since Epoch 1970). Times should be the same as those reported using the properties dialog of the Windows Explorer program. For Win95/98/Me this is actually the last write time. It is currently not possible to retrieve the create time from files on these systems.
public CreateTime ( ) : long
return long
        public virtual long CreateTime()
        {
            if (GetUncPath0().Length > 1)
            {
                Exists();
                return _createTime;
            }
            return 0L;
        }