我想从Lynda.com "Node.js基本训练“开始学习Lynda.com,但是我不能提取练习文件的“节点-模块”文件夹中的章节09_03和11_06。
举个例子:
! C:\no\e.zip: Cannot create folder Ex_Files_Nodejs_EssT\Exercise Files\Ch11\11_06\start\node_modules\grunt-contrib-jshint\node_modules\jshint\node_modules\htmlparser2\node_modules\domutils\node_modules\dom-serializer\node_modules\entities\maps
! The filename or extension is too long.
! C:\no\e.zip: Cannot create Ex_Files_Nodejs_EssT\Exercise Files\Ch11\11_06\start\node_modules\grunt-contrib-jshint\node_modules\jshint\node_modules\htmlparser2\node_modules\domutils\node_modules\dom-serializer\node_modules\entities\maps\legacy.json
Total path and file name length must not exceed 260 characters
! The system cannot find the path specified.如果我不能提取这些文件,我怎么能做这些练习呢?
发布于 2015-12-29 19:48:11
您能在没有node_modules/文件夹的情况下提取它们吗?
您不必提取已安装的依赖项。相反,应该有一个package.json文件,然后您可以通过运行npm install命令(来自cmd或git终端)来安装它们。
还请检查是否正在运行NPM (npm --version)的第3版。然后所有依赖项都将被平装(而不是嵌套节点_模块/),这不会导致您的问题。
发布于 2015-12-29 19:53:21
尝试使用像WinZip或7Zip这样的文件提取程序。它应该允许您将某些文件或文件夹的提取重定向到另一个位置。
https://stackoverflow.com/questions/34517906
复制相似问题