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:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
Path.FilePathToFileURL
Converts a file path to a local file URL.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| Path | 5.0 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example |
|---|---|---|
| Path | The absolute file path to convert to URL. | "/Users/cs/Desktop/test.html" |
Result
Returns URL or error.
Description
Converts a file path to a local file URL.Examples
Converts a path to a file URL
/* shows: file://localhost/Users/cs/Desktop/test.html */
MBS( "Path.FilePathToFileURL"; "/Users/cs/Desktop/test.html" )
Converts a Windows path to file URL:
MBS( "Path.FilePathToFileURL"; "C:\Users\Christian\Desktop\test.html" )
Write a HTML file and an image file to load in web viewer:
Set Variable [ $folder ; Value: MBS( "Folders.UserTemporary" ) ]
Set Variable [ $path ; Value: MBS( "Path.AddPathComponent"; $folder; "test.jpg" ) ]
Set Variable [ $r ; Value: MBS( "Container.WriteFile"; Images::Image; $path ) ]
#
Set Variable [ $html ; Value: "<html><body><p>Hello World</p><img src=test.jpg width=300></body></html>" ]
Set Variable [ $path ; Value: MBS( "Path.AddPathComponent"; $folder; "test.html" ) ]
Set Variable [ $r ; Value: MBS( "Text.WriteTextFile"; $html; $path ) ]
#
Set Variable [ $URL ; Value: MBS( "Path.FilePathToFileURL"; $Path ) ]
Set Web Viewer [ Object Name: "web" ; URL: $URL ]
See also
Example Databases
- CURL/Email/Email Parser and Preview
- CURL/Email/IMAP Email
- Network/ServerSocket/ServerSocket from Webviewer/ServerSocket from Webviewer
- WebViewer/Calendar/Calendar
- WebViewer/Javascript calls Filemaker Script/ServerSocket from Webviewer/ServerSocket from Webviewer
- WebViewer/MethodDraw SVG Editor/MethodDraw
- WebViewer/WebViewer MarkDown/WebViewer MarkDown
- Win Only/Windows Player
Blog Entries
- Windows Media Foundation Player for FileMaker
- FileMaker and WebViewer communication
- MBS FileMaker Plugin, version 5.0pr9
Created 30th January 2015, last changed 23th February 2020
Path.FileMakerPathToNativePath - Path.FileURLToFilePath
Feedback: Report problem or ask question.
Links
MBS Xojo Plugins