Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ディレクトリに約 100,000 個のファイルがあります。これらすべてのファイルを別のディレクトリに移動する必要があります。それには2つの方法があります。
rename(oldfile, newfile)
link(oldfile, newfile) unlink(oldfile)
link(oldfile, newfile)
unlink(oldfile)
どちらのアプローチが優れていますか? 他のより良い解決策はありますか?