answersLogoWhite

0

What else can I help you with?

Related Questions

What is The most common and flexible data-acquisition method?

Disk to image file copy


What is The most common and flexible data acquisition method?

Disk to image file copy


Where are the mini games in starfy?

you discover them in different stages, and view them by pressing "R" or view them when you go in to your account ("play, minigames, copy file, delete file" buttons)


When you copy a file your creating a what of the file?

copy


What is the most reliable way to download a file?

making a copy making a copy of the file. of t making a copy of the file. he file.


When you copy a file you place a copy of the file in the temporary storage called?

clipboard


What is the feature used to create an uncompressed copy of a file?

BY create an uncompressed copy of a file I asume you mean make a copy of the compressed file and have the copy be uncompressed. all you need to do is unzip it.


What is a printed copy of a file called?

The printed version is called the hard copy.


What does rename mean?

Renaming files means changing the name of files. This can be done by pressing on the file icon once, then pressing on the file's name which will allow you to then change the name of the file.


How do you copy batch file itself on any location?

Here's the code: @echo off copy "Location of Batch File" "Location to copy file into" exit


How do you make soft copy of hard copy?

A hard copy is usually a printed version of a digital file, also known as a soft copy. To make a hard copy of a soft copy file you would need to scan and upload it as a digital file.


How do you write in certain line in file by C plus plus?

There are several ways, depending on whether you wish to edit the file directly or load the file into memory to perform the edits. Editing the file directly is seldom recommended -- a better alternative is to make a temporary copy of the file, splitting the file at the insertion point to create two temporaries. Append the inserted text to the first temporary, then append the second temporary. Finally, delete the original file and rename your temporary. You pretty much do the same thing in memory, except you first create an array to store the entire file plus the inserted text, read the first portion of the file into the array up to the insertion point, then insert your new line before reading the remainder of the file. Then write the array back to a new file. Delete the original file then rename the copy. The best method, of course, is to read the entire file into memory first, then perform as many insertions as required before writing back to disk. But always write a copy -- never the original file. Once the copy is made, you can safely delete the original and rename the copy. This ensures the original file doesn't become corrupt if something goes wrong during the save.