Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
11.0
11.1
11.2
11.3
11.4
11.5
12.0
12.1
12.2
12.3
Statistic
FMM
Blog
Files.ReadFile
Reads a file with the given path.
Component | Version | macOS | Windows | Linux | Server | iOS SDK | License |
Files | 3.5 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | Paid |
Parameters
Parameter | Description | Example | Flags |
---|---|---|---|
FilePath | The native file path. Something like "/Users/cs/desktop/test.txt" on Mac and "C:\Programs\Data\test.txt" on Windows. Files without path end in the root directory on Mac. | "test.txt" | |
mode | Can be base64 to encode data first to base64 encoding. Or can be Hex to encode to hex encoding. If filter is "container", the result is returned as a container with a FILE stream inside. Version 5.3 supports filter "auto" to auto detect the type of container. Added Base64URL as option for plugin version 10.3. |
"Base64" | Optional |
filename | If filter is container, this defines the file name to use. | "test.txt" | Optional |
Result
Returns container value or error.
Description
Reads a file with the given path.Reads the data in the file and returns as text with native encoding. This may truncate the string at the first null byte.
You can optionally define a mode like base64 or Hex to read any bytes including null bytes.
See also Text.ReadTextFile for reading text files with specific encoding.
Reading files over 1 GB is not supported. Use Container.ReadFile for bigger files.
Added new modes with version 5.3: auto, compressed, pdf, png, jpg, tif, gif, bmp or psd.
For reading simple text files, please use Text.ReadTextFile.
See also Files.ReadJPEG, Files.ReadPDF, Files.ReadPNG, Text.ReadTextFile and RichText.ReadFile.
For PDF content: If you have a DynaPDF Pro license and DynaPDF functions initialized, this function can add previews for the PDF file on Windows and Linux. For MacOS, we make them with PDFKit.
This function requires a native path. Use Path.FileMakerPathToNativePath to convert a FileMaker path to a native path if required. If you like to have the user choose the path, you can use FileDialog functions.
For Server be aware that server has limited permissions and may not be able to access all files on a computer.
Examples
Read file with some data:
MBS("Files.ReadFile"; $Path )
Read file with some data and encode base64:
MBS("Files.ReadFile"; "/Users/cs/Desktop/test.txt"; "base64")
Read as compressed container:
Set Field [Container Compression::SomeContainer; MBS("Files.ReadFile"; "/Users/cs/Desktop/test.jpg"; "compressed"; "test.jpg")]
Read file on Server:
MBS( "Files.ReadFile"; "C:\Programs\FileMaker Server\Data\Documents\test.pdf")
See also
- DynaPDF.GeneratePreview
- Files.CopyFile
- Files.ReadJPEG
- Files.RenameFile
- Files.RevealFile
- ImageCapture.Download
- Path.FileMakerPathToNativePath
- PDFKit.GeneratePreview
- RichText.ReadFile
- Text.ReadTextFile
Release notes
- Version 10.3
- Added Base64URL as output option for RSA.Sign, CURL.ReceiveData, Files.ReadFile, Hash.DigestFile, Hash.Digest, Encryption.Cipher and for other functions as text encoding parameter.
Example Databases
- CURL/WebServices/WeatherBit.io test
- Drag and Drop/DragTest Popover
- Drag and Drop/DragTest
- Drag and Drop/for Mac/DragTest multiple picture files
- Mac and iOS/Machine Learning/Core ML Photos
- Mac only/ImageCapture/Camera Import
Blog Entries
- MBS FileMaker Plugin, version 10.3pr1
- FileMaker 18 File Script Steps vs. BinaryFile functions
- Adding Drag and Drop receiver to a layout
- [ANN] MBS FileMaker Plugin 5.3 for OS X/Windows
- MBS FileMaker Plugin, version 5.3pr4
- Compressed Containers
- MBS Filemaker Plugin, version 4.4pr6
- MBS Filemaker Plugin, version 3.5pr7
Created 18th August 2014, last changed 28th January 2021
Files.ReadAndWriteFile - Files.ReadJPEG
Feedback: Report problem or ask question.
