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

GetFileSize() public method

Gets the size of the given file which lies in this directory subtree
If the file does not exist.
public GetFileSize ( string relativePath ) : long
relativePath string The relative path to the file from this directory
return long
        public long GetFileSize(string relativePath)
        {
            Contract.Requires(relativePath != null);
            Contract.Ensures(Contract.Result<long>() >= 0);
            return 0; // dummy value
        }