aboutsummaryrefslogtreecommitdiffstats
path: root/doc/codesnippets/doc/src/snippets/code/src_corelib_io_qtemporaryfile.cpp
blob: 8ebbd9e3d7b473adea2d19a7acaa41d0735c9685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
//! [0]
    # Within a function/method...

    file = QTemporaryFile()
    if file.open():
        # file.fileName() returns the unique file name

    # The QTemporaryFile destructor removes the temporary file
    # as it goes out of scope.
//! [0]
}