forked from leftypol/leftypol
11 lines
163 B
PHP
11 lines
163 B
PHP
|
<?php
|
||
|
namespace Vichan\Functions\Fs;
|
||
|
|
||
|
|
||
|
function link_or_copy(string $from, string $to) {
|
||
|
if (!\link($from, $to)) {
|
||
|
return \copy($from, $to);
|
||
|
}
|
||
|
return true;
|
||
|
}
|