About 50 results
Open links in new tab
  1. How can I delete a file that is in use by another process?

    Sep 26, 2014 · When I try to delete a file occurs the following exception: The process cannot access the file '' because it is being used by another process. My code looks like: string[] files …

  2. How can I delete a file or folder in Python? - Stack Overflow

    How do I delete a file or folder in Python? For Python 3, to remove the file and directory individually, use the unlink and rmdir Path object methods respectively:

  3. java - Force Delete all files from a folder - Stack Overflow

    Force Delete all files from a folder Asked 13 years, 4 months ago Modified 2 years, 7 months ago Viewed 77k times

  4. cmd - "rm -rf" equivalent for Windows? - Stack Overflow

    This doesn't delete files, like rm -rf does, and it also returns a non-zero value when the directory doesn't exist, so rd /s /q foo && echo "yay" will fail if directory "foo" doesn't exist.

  5. Cannot delete a file even when logged in as an Administrator

    Sep 12, 2014 · For me the file was read-only, so using -Force eliminated the problem Just to add, I once needed to run an elevated PowerShell, to run bash.exe within it, and from within the …

  6. How can I delete files with PowerShell without confirmation?

    Apr 25, 2017 · I am trying to get the below PowerShell script to work using Task Scheduler. The problem is that it wont delete any files. When I run it manually it needs a confirmation before …

  7. windows - How can I recursively delete an entire directory with ...

    4 There seems to be issues where Remove-Item -Force -Recurse can intermittently fail on Windows because the underlying file system is asynchronous. This answer seems to address …

  8. How to skip "are you sure Y/N" when deleting files in batch files

    277 Use del /F /Q to force deletion of read-only files (/F) and directories and not ask to confirm (/Q) when deleting via wildcard.

  9. powershell - Force overwrite or delete file in use (executable that ...

    Mar 14, 2017 · Force overwrite or delete file in use (executable that currently runs) Asked 8 years, 8 months ago Modified 8 years, 8 months ago Viewed 8k times

  10. PowerShell Delete File If Exists - Stack Overflow

    Feb 17, 2022 · Could you help me with a powershell script? I want to check if multiple files exist, if they exist then delete the files. Than provide information if the file has been deleted or …