] convert ie bookmarks into chrome bookmarks format
] convert ie bookmarks into firefox bookmarks format
] combine bookmarks into single file with additional properties (like ... ) * currently have 'content file' + file properties (date added, folder, last accessed, size, ... )
[WHY NOT]
]
[WHERE]
]
[EXAMPLE]
] used powershell to combine 2 uri files
]
[HOW-TO]
] launch ps
] cd 'favorites' or ??
] create new 'combined-files' file
]
] get list of files in directory (array) // $files = GetChildItem {dir}, $i=0;
] iterate array and perform ops on each file ( run script file, script = multiple successive commands )
// For Each x in $files, / $files[i].open, file.add(content), file.close, $i++ / next