13
14
15
16
17
18
19
20
21
22
23
|
type directory
children "foo"
}
::xvfs::processFile $fsName "" "foo" {
type file
fileContents "abc"
}
return [list "" "foo"]
}
::xvfs::run --directory [pwd] --name synthetic
|
>
>
>
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
type directory
children "foo"
}
::xvfs::processFile $fsName "" "foo" {
type file
fileContents "abc"
}
::xvfs::processFile $fsName "./xvfs-create-synthetic" "xvfs-create-synthetic" {
type file
}
return [list "" "foo" "xvfs-create-synthetic"]
}
::xvfs::run --directory [pwd] --name synthetic
|