ファイルロックってどちらにしてます?

A,

while(file_exists($lf)){
sleep(1);
}
mkdir($lf,0755);

B,

while(mkdir($lf,0755) === false){
sleep(1);
}