我开始使用google jimfs做ls我在FS的根目录中找到了工作目录。这个文件夹的目的是什么?
答案 0 :(得分:3)
它只是一个任意目录,因此工作目录(解析相对路径的目录)不是根目录,因为它通常不在实际情况中。您可以通过自定义/work
将工作目录更改为您想要的任何内容(包括根目录)。以下是将工作目录设置为根目录的示例(在这种情况下,将不会创建Configuration config = Configuration.unix().toBuilder()
.setWorkingDirectory("/")
.build();
目录):
$('.brandModelWrapperGroup').each(function(){
var divs = $(this).find(".brandModelWrapper")
for(var i = 0; i < divs.length; i+=brandModelLineCount) {
divs.slice(i, i+brandModelLineCount).wrapAll("<section class='brandModelLineWrapper'></section>")
}
})