User Tools

Site Tools


Sidebar

Privacy Policy

News

Version 2.50 is out since Jan 1st 2022


Frequently Asked Questions


Namespaces

Note for contributors

If you wish to create a new page in the DroidScript wiki, please click on the most appropriate namespace above and follow the notes for contributors there.

Because of spam, it has been necessary to add a CAPTCHA to the registration form and the save option for editing pages. You will not need to prove you are human if you are logged in, so please register.

Please feel free to improve any existing page, as well as adding new pages to increase the sum of public knowledge about DroidScript.

Formatting Syntax

built_in:read_file

ReadFile

(Information and examples taken from the DroidScript documentation)

Description

The ReadFile method reads a text file from internal or external file storage.

 txt = app.ReadFile( fileName, encoding );

See also WriteFile


Example

function OnStart()
{
  txt = app.ReadFile( "/Sys/Html/Page.htm" );
  app.ShowPopup( txt );
}

Options

Encoding-options
windows-1252
ISO-8859-1
US-ASCII
UTF-16
UTF-16BE
UTF-16LE
UTF-8

Information from: Dave Smart group thread “app.CreateWebServer return file” 04:17

built_in/read_file.txt · Last modified: 2015/10/15 07:54 (external edit)