Skip to content

GetShowFileStatus()

The GetShowFileStatus Lua function returns a string with the current device’s show file status, for example, “NoShow”, “ShowLoaded”, “ShowDownloaded”, “ShowSaving”, and “DataNegotiationActive”.

This function does not accept any arguments.

  • String:
    The returned string is the enum string from “Enums.ShowFileStatus” that matches the current status.

This example prints the current device’s show file status in the Command Line History:

Copy CodeLua
```
return function ()
-- Prints the current showfile status
Printf("ShowfileStatus: "..GetShowFileStatus())

end