标签: php
我想在不知道目标文件是否存在的情况下将文件从一个地方复制到另一个地方。
我正在使用:
netstat -aon | more
但是它说:
<?php $source = 'user/temp/details.txt'; //this file exists. $target = 'user/'.$user_name.'/details.txt'; //this file don't exists. copy($source, $target); ?>