Add this method which will use flock to ensure that the only one process can execute the given block at a time. ``` SugarUtils::File.flock_mutex(filename) do # code to run within the mutex end ```