I am using this command line to import files into a VOB:
clearfsimport -recurse -rmname -nsetevent -filter <sourceDir>/* <vobComponentRootDir>
Content of sourceDir:
fileA
fileB
Content of vobComponentRootDir before import:
fileC
Content of vobComponentRootDir after import:
fileA
fileB
fileC
fileC is not removed, despite I used '-rmname' option.
I suspect it is because it is at the root of the component
I want to automate this import and have the same content in sourceDir and vobComponentRootDir.
How can I complete this ?