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
Folders.UserDocuments
Queries path to user's document folder.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| Folders | 4.3 | Yes | Yes | Yes | Yes | Yes |
Parameters
none
Result
Returns path or error.
Description
Queries path to user's document folder.This is a native path. You can use Path.NativePathToFileMakerPath if you need to use path in a script step.
Version 8.5 and newer return the server documents folder for scripts running on server by internally calling Get(DocumentsPath).
Examples
Queries path:
MBS( "Folders.UserDocuments" )
Create folder in documents:
Set Variable [$folder; Value:MBS( "Folders.UserDocuments" )]
If [IsEmpty(Container Export::Name)]
Set Field [Container Export::Name; "Record " & Get(RecordID)]
End If
Set Variable [$path; Value:MBS( "Path.AddPathComponent"; $folder; Container Export::Name )]
Set Variable [$r; Value:MBS("Files.CreateDirectory"; $path)]
Get file in documents folder:
Set Variable [$folder; Value:MBS( "Folders.UserDocuments" )]
Set Variable [$path; Value:MBS( "Path.AddPathComponent"; $folder; "test.txt" )]
See also
- CURL.SetOptionCAINFO
- Files.CreateDirectory
- Folders.SharedDocuments
- Folders.UserDownloads
- Folders.UserFonts
- Path.AddPathComponent
- Path.NativePathToFileMakerPath
Example Databases
Blog Entries
- Use root certificates included with FileMaker
- MBS FileMaker Plugin, version 8.5pr2
- MBS FileMaker Plugin, version 7.5pr3
Release notes
- Version 8.5
- Changed Folders.UserDocuments to return FileMaker documents folder on server.
- Version 7.5
- Implemented Folders.UserDocuments for Linux to point to FileMaker's document folder.
Created 18th August 2014, last changed 6th November 2020
Folders.UserDesktop - Folders.UserDownloads
Feedback: Report problem or ask question.
Links
MBS Xojo tutorial videos