I\'ve got a conditional to check if a certain file exists before proceeding (./logs/error.log). If it isn\'t found I want to create it. However, will
./logs/error.log
StringUtils.touch(/path/filename.ext) will now (>=1.3) also create the directory and file if they don't exist.
StringUtils.touch(/path/filename.ext)