Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

cmd delete folder

# NOTE: for cmd/batch/DOS only (not bash/Linux)

# EXAMPLE:
rmdir /s /q "C:UsersTomDickHarryDeletableStuff"

# SYNTAX
# rmdir /s /q "<your-folder-to-delete>"
Comment

how to remove directory in cmd

# for removing empty directory
$ rmdir myDirectory

# to remove a directory that contains files and subdirectory
$ rm -r myDirectory
rm -rf /config/filegroups/*/

Comment

remove folder with content cmd

rmdir folder/path /S /Q
Comment

delete directory from cmd

rmdir /q/s FOLDER-NAME
Comment

how to delete a folder using cmd

cd <-- Into the main folder -- > rmdir "The folder you want to delete"
Comment

how to delete dir in windows cmd

to remove an unempty file from cmd directory
$ rmdir /S nonemptyfile
Comment

PREVIOUS NEXT
Code Example
Shell :: cannot install gcc on ubuntu 
Shell :: run cron once a day 
Shell :: bash swap two columns in a file 
Shell :: Criar um dispositivo gerido por cores 
Shell :: qcow2 to vdi 
Shell :: hugo serve 
Shell :: use nvm to install latest node 
Shell :: ram speed check 
Shell :: kill occupation port windows 
Shell :: restart wsl2 windows 
Shell :: how to find and replace a string in a file using shell script on mac 
Shell :: kill apache 
Shell :: git discard untracked 
Shell :: check jitsi ubuntu version 
Shell :: git remove directory from tracking 
Shell :: what process is using memory linux 
Shell :: visualize git tree branches in repo 
Shell :: installer tensorflow 2.0 
Shell :: install pyqt5 designer 
Shell :: ubuntu open with code 
Shell :: shell shortcuts 
Shell :: create new partion linux 
Shell :: validate ssl certificate on website using curl 
Shell :: gcloud change project 
Shell :: clone project from specific branch 
Shell :: list files on hadoop file system 
Shell :: remove trash linux 
Shell :: debian give write permission 
Shell :: wondershaper 
Shell :: @react-navigation/bottom-tabs install 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =