Software Venture Consulting
ToMarket

FileMaker Pro downloads & Resources
FileMaker Custom Functions
FileMaker Web Viewer Examples
FileMaker Pro & Lasso Consulting
Training
FileMaker Books
FileMaker Articles
FileMaker Error Reference

Free Web Tools
Free FileMaker Tools

Personal Pages
Videos
Adventures
Links

Shopping Cart
Shopping Cart

Search:

Free Newsletter
Signup


Brian Dunning
Contact me | vCard


Brian on CNN
Brian on CNN


Brian on CBS Radio


Privacy Policy



FileMaker is a registered trademark of FileMaker, Inc. in the U.S. and other countries.

 FileMaker Pro Custom Functions

List  |  Show Random  |  Upload  |  Add This to Your Site

makefolder ( new_folder ; pathTo )

Rate this function:  

RatingRatingRatingRatingRating
  Average rating: 2.9  (9 votes)
  Discuss this Custom Function

Kenneth Durrum, Released Solutions
http://web.mac.com/kdurrum/iWeb/Site/About%20Me.html

Use the perform applescript script step with this function to perform new folder creation with applescript..

Sample Input:
makefolder ( myfolder , mypath )
Sample Output:
tell application "Finder"
if not (exists folder "yourFolder" in alias "your:path:to:" ) then
make new folder in folder "your:path:to:" with properties {name:"yourFolder"}
end if
end tell


 Then copy & paste into FileMaker Advanced's Edit Custom Function window.

Click here to copy To Clip Manager if you have myFMbutler's Clip Manager installed

Description:

Use the perform applescript script step with this function to perform folder creation action.

Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.

This is my Custom Function and I want to edit it

Discuss:

5 most recent comments | Show all 6 comments

My answer: only if you use a Mac.

These script steps:

Set Variable ( $path ; Get ( DocumentsPath ) )
Perform AppleScript ( makefolder ( "vcard" ; $path ) )

generate an error -43 and the comment that my Documents folder cannot be found. It is in fact, right where it is intended to be.

The folder "vcards" is not created.

Lorne Walton, Maple Ridge, BC, Canada
April 17, 2009 4:52pm

The reason Get ( DocumentsPath ) is failing in the code above is because it returns a POSIX path and Finder needs a HFS path ( colon separated).

"HardDrive:Users:user_name:Documents:"

Make that adjustment and it should work fine.

Craig Williams, Monument, CO
May 03, 2009 3:51pm

Tried that. Didn't work. This change to the CF worked:

"
set ASPath to \"" & pathTo & "\" ¶
tell application \"Finder\" ¶

if not (exists folder \"" & new_folder & "\"" & " in alias ASPath ) then ¶
make new folder in folder " & "\""& pathTo & "\" "& " with properties {name:" & "\"" & new_folder & "\"} ¶
end if ¶
end tell

"

Lorne Walton, Maple Ridge, BC, Canada
May 04, 2009 5:20am

It's bad practice to call Finder to perform operations such as this.
Instead you should use:

tell application " & Quote("System Events") &"¶
make new folder at end of pathTo¶
end tell¶

Jack James, London
May 06, 2009 2:47am

I find it more reliable -- and quicker -- to call a shell script:

set variable $AppleScript to

"do shell script " & quote ( "mkdir /Users/jamesducker/Desktop/whatever/" )


perform applescript $AppleScript

James Ducker, Swindon UK
January 22, 2010 9:32am

Make a comment about this Custom Function (please try to keep it brief & to the point). Anyone can post:

Your Name:
City/Location:
Comment:
characters left. If you paste in more than 1500 characters, it will be truncated. Discuss the function - advertisements and other useless posts will be deleted.
Answer 6 + 6 =
Search for Custom Functions:

Custom Functions Widget
Download the Custom Function Dashboard Widget for OS X
Keep all the latest Custom Functions right at your fingertips!

Newest Custom Functions:

1. webviewer_button ( content; textCol; bgCol )
  (Wed, Mar 03, 11:18am)
2. RemoveCommonValues ( Array ; ComparisonArray )
  (Wed, Feb 24, 9:39pm)
3. DistanceGeoCoord ( Lat1deg ; Lat1mm ; Lat1ss ; Lon1deg ; Lon1mm ; Lon1ss ; Lat2deg ; Lat2mm ; Lat2ss ; Lon2deg ; Lon2mm ; Lon2ss ; U ; Version )
  (Wed, Feb 24, 2:20pm)
4. fnGoogleLineChart ( chtitle ; xtitle ; ytitle ; xfield ; yfield ; color )
  (Tue, Feb 23, 1:30pm)
5. StringConstruct ( text ; prefix ; suffix ; altText )
  (Fri, Feb 19, 10:57am)
6. ShowValueCascade ( fields ; altText )
  (Fri, Feb 19, 10:44am)
7. ShowValue ( text; altText )
  (Fri, Feb 19, 10:28am)
8. timeFormat ( thetime ; leader )
  (Wed, Feb 17, 7:44pm)

RSS Feed of Custom Functions