leftypol/inc/functions/fs.php

11 lines
163 B
PHP
Raw Normal View History

2025-03-17 23:10:50 +01:00
<?php
namespace Vichan\Functions\Fs;
function link_or_copy(string $from, string $to) {
if (!\link($from, $to)) {
return \copy($from, $to);
}
return true;
}