JanetDocsSourcePlaygroundTutorialsI'm Feeling luckyCommunityGitHub sign in

file/temp

core-api


    cfunction
    src/core/io.c on line 125, column 1

    (file/temp)

    Open an anonymous temporary file that is removed on close. Raises 
    an error on failure.


1 exampleSign in to add an example
Loading...
(def f (file/temp))
(file/write f "ok stuff")
(file/seek f :set 0)
(file/read f :all)

# N.b. file/temp's file is not accessible outside of the process
veqqqPlayground