1 #include <msp/fs/dir.h>
2 #include <msp/fs/stat.h>
3 #include <msp/fs/utils.h>
13 void Task::add_file(const FS::Path &f)
18 void Task::set_unlink(bool u)
25 for(list<FS::Path>::const_iterator i=files.begin(); i!=files.end(); ++i)
29 // If the file exists, the directory it's in must exist too
34 FS::Path dir = FS::dirname(*i);
36 FS::mkpath(dir, 0755);