Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在不删除目录本身的情况下删除苹果目录中的所有文件吗?fs-extra API没有描述是否可能。
fsExtra.remove 'apples/*', -> if !err # Do stuff
您可以使用emptyDir
确保目录为空。如果目录不存在,则创建它。目录本身不会被删除。
fsExtra.emptyDir 'apples/', -> if !err # Do stuff