answersLogoWhite

0

Yes. The undelete utility included in many later versions of DOS can undelete a file. It can also often be recovered using other third-party data recovery tools.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What does the command prompt DEL do?

the DEL command deletes a specified file when typed in the form below: del file for more information about the command, type : del /? in command prompt


How do you delete jpg and docx files using batch file only with a single command?

Use the DEL command followed by the names of the files using wildcards. The optional /Q switch turns off prompting for each file matching the wildcard. The double quotes are required to cater for file names containing spaces. DEL /Q "*.jpg" "*.docx"


What command you use to delete a file?

Del is used to delete a file in command prompt.


How do you delete 0 byte files using DOS?

The command for deleting a file in DOS is DEL. If the file you are trying to delete is in the current directory, type DEL followed by the full filename. E.g. del file001.txt If there are multiple files, the wildcard * can be used. del file*.txt will delete all the text files that start with 'file' del file*.* will delete all the files that start with file. del *.txt will delete all the text files. del *.* will delete all the files in the current directory. It is possible to delete files in another directory by typing the full path and filename del c:\folder01\*.* will delete all the files in the directory c:\folder01\ DEL will not affect hidden files, but careless use of this command could damage your operating system so use with care.


What is the command to delete a file in windows 7?

Click the file>press the delete key (or del)>Press the enter key


How do you permanently delete a file without sending it to the recycle bin?

To permanently delete a file without sending it to the Recycle Bin, you can select the file and press Shift + Delete on your keyboard. This action bypasses the Recycle Bin and deletes the file immediately. Alternatively, you can also use the command line by navigating to the file's directory and using the del command to remove it permanently. Always ensure that you really want to delete the file, as this action cannot be undone.


How you can make a batch file which delete a directory on booting?

REM deletes a file C: del filename exit Create a file, above, using wordpad and save it with the extension .BAT Modify the line C: del filename, to indicate where the file is and instead of 'filename' write the name of the file you want to delete. (REM is just a remark to remind you what it does..) Say you call the batch file 'deleter.bat', then you have to include this file name in the startup program file. This will depend on what operating system you are using. Old DOS, would use an autoexec.bat file. You could then actually add the delete command in with the autoexec.bat file.


What is internal or external command operable program or batch file?

An internal command is a command built into the command interpreter (such as Command Prompt in Windows), allowing it to execute without needing a separate executable file. Examples include commands like COPY, DIR, and DEL. An external command, on the other hand, is a separate executable file (like .exe, .com, or .bat files) that the command interpreter can run, such as PING or FORMAT. If a command is not recognized, it may indicate that it is not an internal command or that the external command's executable file is not found in the system's PATH.


When you want to delete information off your computer where is it stored?

A standard deletion of data from the Windows operating system (right-click Delete or highlighting file and pressing DEL) sends files to the Recycle Bin (sometimes found on the Desktop). However, if the recycle bin has been emptied (or the file/files have been highlighted and deleted using SHIFT+DEL) then the files have been effectively lost and can only be recovered using specialist software.


How do I write a batch file to search recursive folders for a list of partial file names with wildcards and then delete the files?

No need for a batch file, the following commands will do it: CD folder FOR /F %i IN (files.txt) DO DEL %i /P /F /S The CD command sets the current folder. All deletions will occur in the specified folder and its sub-folders. The files.txt file must be a list of file names (wildcards permitted) with one file name per line. If this file does not reside in the current folder you must specify the fully-qualified path or the relative path (relative to the current folder). The FOR loop essentially executes the DEL command for each file in files.txt. The DEL command line switches are: /P (prompt for confirmation before deleting each file) /F (force delete read-only files) /S (recurse through sub-folders of the current folder). To suppress prompting, remove /P but add /Q (quiet mode) to suppress prompting on global wildcards. For more help on this, enter DEL /? at the command prompt. For more help on the FOr command, type FOR /? at the command prompt. If used in a command script (.cmd) or batch file (.bat), replace %i with %%i. The only real advantage of using a batch file (other than to save a bit of typing) is that you can also pass the root folder and the file containing your file list as parameters (identified by %1, %2, etc).


What command erases files or groups of files?

The Del or Erase command in command prompt.


What is the command to delete all files in the Adata folder that begin with the letter A and have the txt file extension?

DEL A:\data\ A*.txt