>>78
こんな感じか
const cfu = "D:\\Work\\clip01.cfu";
let items = [];
for(var i = 0, TC = te.Ctrl(CTRL_TC); i < TC.Count; i++){
if(IsFolderEx(TC.Item(i).FolderItem)){
items.push(api.PathQuoteSpaces(TC.Item(i).FolderItem.Path));
}
}
if(items.length >= 1) {
Sync.ClipFolder.Add(cfu, items.join(' '));
}