Name
GetCurrentDirectory -- return full path of current directory (V4.5)
Synopsis
dir$ = GetCurrentDirectory([t])
Function
This function simply returns a fully qualified path to the current directory. You can change the current directory using ChangeDirectory().

Starting with Hollywood 10.0, this function accepts an optional table argument which supports the following tags:

Adapter:
This tag allows you to specify one or more filesystem adapters that should be asked to handle the operation. This must be set to a string containing the name(s) of one or more adapter(s). Defaults to the adapter set using SetDefaultAdapter(). See Loaders and adapters for details. (V10.0)

UserTags:
This tag can be used to specify additional data that should be passed to filesystem adapters. If you use this tag, you must set it to a table of key-value pairs that contain the additional data that should be passed to plugins. See User tags for details. (V10.0)

Inputs
t
optional: table argument containing further options (see above) (V10.0)
Results
dir$
path to the current directory

Show TOC