Methods
cat(filePath) → {string}
Returns the file content of the given file
Parameters:
Name | Type | Description |
---|---|---|
filePath |
string | file path |
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--") |
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 |
Returns:
- Type
- void
createTempDir() → {string}
Creates a new temporary temporary directory
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 |
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 |
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 |
Returns:
file name
- Type
- string
getFileSize(filePath) → {number}
Returns the file size of the given file
Parameters:
Name | Type | Description |
---|---|---|
filePath |
string | file path |
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 |
Returns:
- Type
- void
getScreenHeight() → {number}
Obtains the height of user's screen
Returns:
height of user's screen in pixels
- Type
- number
getScreenWidth() → {number}
Obtains the width of user's screen
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 |
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 |
Returns:
list of files and directories
- Type
- Array.<string>
mkdir(directoryPath) → {void}
Creates the given directory
Parameters:
Name | Type | Description |
---|---|---|
directoryPath |
string | directory path |
Returns:
- Type
- void
remove(filePath) → {void}
Removes the given file
Parameters:
Name | Type | Description |
---|---|---|
filePath |
string | file path |
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) |
Returns:
- Type
- void
touch(filePath) → {void}
Creates the given file if it does not exist
Parameters:
Name | Type | Description |
---|---|---|
filePath |
string | file path |
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 |
Returns:
- Type
- void