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

LastModified() public method

Retrieve the last time the file represented by this SmbFile was modified.
Retrieve the last time the file represented by this SmbFile was modified. 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.
public LastModified ( ) : long
return long
        public virtual long LastModified()
        {
            if (GetUncPath0().Length > 1)
            {
                Exists();
                return _lastModified;
            }
            return 0L;
        }