$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2005-03-23 05:39:22
Oliver Kowalke wrote:
> Hi,
> I'm using boost-1.32 and I didn't find a function which creates an empty
> file or an empty temporary file?!
Empty file is simple:
ofstream ofs("name of file");
Temporary file is harder, and it's not yet supported in boost.filesystem.
- Volodya