Global

Methods

cat(filePath) → {string}

Returns the file content of the given file
Parameters:
Name Type Description
filePath string file path
Source:
Returns:
content
Type
string

chmod(filePath, permissions) → {void}

Sets the given file permissions
Parameters:
Name Type Description
filePath string file path
permissions string file permissions (e.g. "r--r--r--")
Source:
Returns:
Type
void

cp(source, target) → {void}

Copies the given source file to the target location
Parameters:
Name Type Description
source string Source file
target string Target location
Source:
Returns:
Type
void

createTempDir() → {string}

Creates a new temporary temporary directory
Source:
Returns:
file path of created temporary directory
Type
string

createTempFile(extension) → {string}

Creates a new temporary file with the given file extension
Parameters:
Name Type Description
extension string file extension
Source:
Returns:
file path of created temporary file
Type
string

fileExists(filePath) → {boolean}

Checks if the given file exists
Parameters:
Name Type Description
filePath string file path
Source:
Returns:
true if file exists
Type
boolean

fileName(filePath) → {string}

Returns the file name of the given file
Parameters:
Name Type Description
filePath string file path
Source:
Returns:
file name
Type
string

getFileSize(filePath) → {number}

Returns the file size of the given file
Parameters:
Name Type Description
filePath string file path
Source:
Returns:
file size
Type
number

getLatestVersion(wizard, category, regex) → {void}

Fetches the latest available Wine version based on the category and version regex
Parameters:
Name Type Description
wizard wizard setup wizard to show the download progress of the versions json
category string (e.g. "upstream-linux-x86")
regex RegExp regex the version must fulfill
Source:
Returns:
Type
void

getScreenHeight() → {number}

Obtains the height of user's screen
Source:
Returns:
height of user's screen in pixels
Type
number

getScreenWidth() → {number}

Obtains the width of user's screen
Source:
Returns:
width of user's screen in pixels
Type
number

lns(target, link) → {void}

Creates a symbolic link
Parameters:
Name Type Description
target string target
link string destination
Source:
Returns:
Type
void

ls(directoryPath) → {Array.<string>}

Lists all files and directories contained in the given path
Parameters:
Name Type Description
directoryPath string directory path
Source:
Returns:
list of files and directories
Type
Array.<string>

mkdir(directoryPath) → {void}

Creates the given directory
Parameters:
Name Type Description
directoryPath string directory path
Source:
Returns:
Type
void

remove(filePath) → {void}

Removes the given file
Parameters:
Name Type Description
filePath string file path
Source:
Returns:
Type
void

sortVersions(versions) → {void}

Sorts an array of Wine versions in place
Parameters:
Name Type Description
versions array The versions array (see packages in versions json)
Source:
Returns:
Type
void

touch(filePath) → {void}

Creates the given file if it does not exist
Parameters:
Name Type Description
filePath string file path
Source:
Returns:
Type
void

writeToFile(filePath, content) → {void}

Writes the given content to the given file
Parameters:
Name Type Description
filePath string file path
content string content which shall be written
Source:
Returns:
Type
void