I have some issues because on Amiga compatibles you can have directory and file names that contain backslashes. For example, filesysbox under MorphOS converts unknown non-printable characters to \xHEXA format, which contains the backslash in file/dir names then. If you mount a network share that contains some alien charset/characters that get converted to this \x format, they fail with Hollywood's functions.
Here's an example:
Code: Select all
f$ = "ram:test\\file"
Execute("Touch", f$) ; Creates "ram:test\file" file
DebugPrint(f$, Exists(f$)) ; Exists return 0
s$ = FileToString(f$) ; Cannot read file