Library

List of all types and methods in the library

Base.:-Method
-(path::AbstractPath, val::Int)

Move val levels up in the paths hierarchy.

source
Base.:/Method
/(p1::AbstractPath, p2::AbstractPath)

Concatenate paths.

source
Base.parentMethod
parent(path::AbstractPath)

Get the folder one level up in the hierarchy of a path.

source
Base.splitMethod
split(path::AbstractPath)::Tuple{AbstractPath,String}

Split a path into its base and its name.

source
ObjectivePaths._treeMethod
_tree(dir::String)::OrderedDict

Construct a dictionary storing files/subsfolders hierarchy form a directory.

Calls itself recursively to handle subfolders.

source
ObjectivePaths.baseMethod
base(p::AbstractPath)

Get the base (dirname) of a path.

Similar to dirname(p) but returns a Folder object instead of a String.

source