answersLogoWhite

0

What is Close File?

Updated: 12/16/2022
User Avatar

Wiki User

11y ago

Best Answer

Closed medical files are part of a system the US Navy uses to ensure that medical records remain in the custody of one of their affiliated hospitals at all times.

User Avatar

Macy Wuckert

Lvl 10
1y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is Close File?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you close a file in Microsoft Spreadsheet?

Go to the File Menu and select Close.


Which option in file pull-down menu is used to close the file in Microsoft Word?

close


How do you delete a file when it is being used in other place?

Go to the file and close it, or close the app that is using it. Then delete.


What are the three steps that must be taken when a file is used by a program?

1. Open the file, Process the file, Close the file


What is close button in Microsoft Excel?

The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.The x in the top right corner of the window can be used to close a file. There is also a close button that you can add to a toolbar in the Customize options.


Tell three ways you save a file?

save as a file.enter the file.open a file.


What do you do when a file is corrupted on Linux?

If you have a backup of the file. restore it. Otherwise, you'll probably just have to delete it.


What kinds of virus that make it go to end of file when open a file and can't not close the file?

i m like bassie for how to make virus


How do you remove a dll file that is open by other programs?

You have to close the other program first, because when a program has a file open, the system locks the file.


Why does your batch file close every time?

If a batch file closes every time, it may have a problem. It might close after a certain period of time, or if it has remains inactive for a certain period of time.


How do you edit a existing file in c program?

Open the file for reading and load the content into memory where it can freely edited. To prevent external changes to the file, keep the file open but lock it to prevent access. When the user saves the modified data, write that data to a temporary file then close it. Then close the original file, delete it and rename the temporary file with the original file name. For added safety during file edits, you should also maintain a recovery file that keeps track of all the changes. Once the temporary is renamed, you can delete the recovery file.


Write a Program to open close a file in c?

You have to use the preprocessor directive fstream.h. #include <fstream.h> void main () { ifstream inDataStream;//the stream to open excess to a file inDataStrea.opem("fileName.txt");//to open an excess to the file fileName.txt (can be //any) if (inDataStream.fail())//check if the file was opened successfully { cout << "Couldn't open the file!"; } inDataStream << "Hello";// writing the word "Hello" in the file (can be any information) inDataStream.close();//close the opened excess to the file }