Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Copy a File
How To Copy a File? - PHP Script Tips - Working with Directoris and Files
✍: FYIcenter.com
If you have a file and want to make a copy to create a new file, you can use the copy() function. Here is a PHP script example on how to use copy():
<?php unlink("/temp/myPing.exe"); copy("/windows/system32/ping.exe", "/temp/myPing.exe"); if (file_exists("/temp/myPing.exe")) { print("A copy of ping.exe is created.\n"); } ?>
This script will print:
A copy of ping.exe is created.
2007-04-23, 4695👍, 0💬
Popular Posts:
How To Call a Sub Procedure? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions To...
How can you enable automatic paging in DataGrid ? Following are the points to be done in order to en...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
What is CodeDom? “CodeDom” is an object model which represents actually a source code. It is designe...
What invokes a thread's run() method? After a thread is started, via its start() method of the Threa...