FAKE - F# Make - A DSL for build tasks and more FAKE
6.0.0

Lookig for older versions of the documentation, pre FAKE v6? See 

v5.fake.build

FileInfo Module

Contains tasks to interact with FileInfo

Functions and values

Function or value Description

FileInfo.contentIsEqualTo first second

Full Usage: FileInfo.contentIsEqualTo first second

Parameters:
    first : FileInfo - First FileInfo to operate on
    second : FileInfo - Second FileInfo to operate on

Returns: bool

Checks if the two files are byte-to-byte equal.

first : FileInfo

First FileInfo to operate on

second : FileInfo

Second FileInfo to operate on

Returns: bool

FileInfo.ofPath path

Full Usage: FileInfo.ofPath path

Parameters:
    path : string - Create an instance of `FileInfo` from given path

Returns: FileInfo
Modifiers: inline

Creates a FileInfo for the given path.

path : string

Create an instance of `FileInfo` from given path

Returns: FileInfo

Active patterns

Active pattern Description

FileInfo.(|FullName|) f

Full Usage: FileInfo.(|FullName|) f

Parameters:
Returns: string

Active Pattern for determining file name.

f : FileInfo

FileInfo to operate on

Returns: string

FileInfo.(|NameSections|) f

Full Usage: FileInfo.(|NameSections|) f

Parameters:
Returns: string * string * string

Active Pattern for determining FileInfoNameSections.

f : FileInfo

FileInfo to operate on

Returns: string * string * string