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

FileSystemOperators Module

Defines custom operators for manipulating files and directories in a file system

Functions and values

Function or value Description

path1 path2

Full Usage: path1 path2

Parameters:
    path1 : string - The first path to operate on
    path2 : string - The second path to operate on

Returns: string
Modifiers: inline

Combines two path strings using Path.Combine

path1 : string

The first path to operate on

path2 : string

The second path to operate on

Returns: string

path1 @@ path2

Full Usage: path1 @@ path2

Parameters:
    path1 : string - The first path to operate on
    path2 : string - The second path to operate on

Returns: string
Modifiers: inline

Combines two path strings using Path.Combine. Trims leading slashes of the right operand. This makes "/test" @@ "/sub" return /test/sub

path1 : string

The first path to operate on

path2 : string

The second path to operate on

Returns: string