Issue:
Change folder permissions in ProcessMaker
Cause:
Nuevo requerimiento
Solution:
Se cambio los permisos de los files and directories
29 lines
703 B
YAML
29 lines
703 B
YAML
-
|
|
input: '/test'
|
|
output: true
|
|
comment: isPathAbsolute() returns true if path is absolute
|
|
-
|
|
input: '\\test'
|
|
output: true
|
|
comment: isPathAbsolute() returns true if path is absolute
|
|
-
|
|
input: 'C:\\test'
|
|
output: true
|
|
comment: isPathAbsolute() returns true if path is absolute
|
|
-
|
|
input: 'd:/test'
|
|
output: true
|
|
comment: isPathAbsolute() returns true if path is absolute
|
|
-
|
|
input: 'test'
|
|
output: false
|
|
comment: isPathAbsolute() returns false if path is relative
|
|
-
|
|
input: '../test'
|
|
output: false
|
|
comment: isPathAbsolute() returns false if path is relative
|
|
-
|
|
input: '..\\test'
|
|
output: false
|
|
comment: isPathAbsolute() returns false if path is relative
|
|
|