Bari.Core.Generic.IFileSystemDirectoryContracts.GetLastModifiedDate C# (CSharp) Method

GetLastModifiedDate() public method

Gets the last modification's date for a given file which lies in this directory subtree
If the file does not exist.
public GetLastModifiedDate ( string relativePath ) : System.DateTime
relativePath string The relative path to the file from this directory
return System.DateTime
        public DateTime GetLastModifiedDate(string relativePath)
        {
            Contract.Requires(relativePath != null);
            return DateTime.UtcNow; // dummy value
        }