do we have something in OF like we have in UNIX that just changes a files creation or modification date?
in shell scripts i would use $ touch
thx
do we have something in OF like we have in UNIX that just changes a files creation or modification date?
in shell scripts i would use $ touch
thx
there is ofSystem(const string& command)
function. you pass as a string what´s to be runned in the terminal.
so in your case,
ofSystem("touch path/to/file");
best
thanks guys.