Ver original<?php$i = 1;while(true){ $file = 't-' . $i++ . '.txt'; if(!file_exists($file)){ touch($file); break; }}