How to Delete node_modules - Deep Nested Folder in Windows

前端 未结 30 999
逝去的感伤
逝去的感伤 2020-12-02 03:25

Upon trying to remove the node_modules directory created by npm install:

The source file name(s) are larger than is su

30条回答
  •  温柔的废话
    2020-12-02 04:08

    simple just run for windows I haven't tested it for other operating systems

    rm -r node_modules
    

    in fact, you can delete any folder with this.

    like rm -r AnyFolderWhichIsNotDeletableFromShiftDeleteOrDelete.

    just open the gitbash move to root of the folder and run this command

    Hope this will help.

    Thanks, Ajay Kotnala

提交回复
热议问题