Question: Write the code for implementation of cp that makes a copy of a file in C. The file source name is supplied as an argument

Write the code for implementation of cp that makes a copy of a file in C. The file source name is supplied as an argument in the command line using the following syntax: cp src_file

As the result, the contents of src_file will be copied into a new file with the name X_copy_made_by_Y, where X is the name of src_file and Y is the name of cp executable. You are only allowed to use the system calls read(), write(), open(), creat() and close() to manipulate the files. Your code should check for reasonable errors and provide corresponding error messages.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!