answersLogoWhite

0


Best Answer

There's no commands in C++.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Explain any six file commands in C plus plus?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the source of dos commands?

MS-DOS has two kinds of command sourceInternal commands: Any command which presents within command.com file is called internal commands. These commands does not require any external source or disk to run. Example: dir, copy, move, cd etc.External commands: Any command which presents in hard disk or outside command.com. Example: format, fdisk etc.


How do I add time delay in a batch file?

You can use the TIMEOUT command, which paralyzes the batch file from running further commands until the timer runs out or if the user presses a key. Here's an example: @echo off Commands here TIMEOUT 10 Commands here exit The file will run whatever command you want it to run, then it will halt all running commands until 10 seconds passed, or if the user pressed a key before the timer runs out. Then, it will run any other commands you want to do after the delay, and then exit out.


How do you copy and paste using a batch file?

a batch file is used to automate the running of commands at a command prompt using the program command.com or cmd.exe. There are not any default available commands that will copy to or from the clipboard. You must use a 3rd party executable and pipe (|) the results to and from it.


Any program in c plus plus without using any header file?

For example: int main (void) { return 0; }


Is tscdsbl.bat safe to install?

*Never* install any file or run any executable you did not get from a trusted source or that you know to be a good file. Always assume the worst. A .bat file is a batch file used to execute a "Batch" of commands and could have crippling effects on your security. Please, never run something you don't implicitly trust.


What is a FTP used to transfer?

FTP stands for 'File Transfer Protocol'. Its function is to allow uploading and downloading of any files on networks via the PUT and GET commands. Anytime a file is downloaded on the internet, FTP is used.


Is there any possibility to hide a text file into an audio file using c plus plus?

i want full c language tutorial for our self study....with an easy mtho..and example also.....


How do you file a claim against a decedent's estate?

Perhaps there is a form available at the court where the probate was filed. If not, explain your claim in writing, clearly, with any supporting documents, and file it with the court.


How can you run a file on startup using CMD?

Make a batch file. Open up notepad, type in the commands just like you would if you had a C:\prompt and choose "save as." When you save it, remove the .txt extension & use .bat instead. Batch files can be executed just like an .exe, any commands in the batch file are put to a command prompt & executed. So just put the batch file (or a shortcut to it) in programs/startup in your start menu & youre done!


How do you send commands to a command-line EXE program from a batch?

Just put the commands in your batch file. When someone runs the program, it will execute the commands it comes across line-by-line. - Example Batch Script: This script will run an application EXE file with command line parameters. This will use the shutdown.exe file that comes with windows. It shuts down the computer in 60 seconds. @shutdown -s -t 60 - You could also use the START command. For any command or exe file that runs from the command line, you could open a command prompt and type the name of the file followed by /? to find out what you can use as command parameters. Example: START /?


How much it cost to file you-130 petition form?

355 dollars , plus ur lawyer fees if any ?


What are internal and external commands in dos?

INTERNAL COMMANDSThese are those commands which are contained in command.com files of MS-DOS.These are those functions that are built into the command interpreter.There is no need of any external file in computer to read internal MS-DOS command.These commands can be used as long as DOS is running on the system.Internal commands do not vary from system to system.These are ver, time, del, md, cd, copy con, cls, date, vol, ren, copy etc.EXTERNAL COMMANDSThese are those commands which are not in-built in MS-DOS.External commands are those which are not included in the interpreter.There is a need of an internal file in the computer to read external MS-DOS command.External command may vary from system to system. This means any two computers with same version of MS-DOS may have same internal commands, but may have different external commands.These are tree, xcopy, diskcopy, more, print etc.