I would like to make folder and file by reading the following paths
/project/tags/folder2/command.txt
/project/branches/folder1/folder1.1/Notes.docx
and construct folders and files under drive D:\ likes this
project
tags
folder2
command.txt
branches
folder1
folder1.1
Notes.docx
.Then use this physical structure to type tree view with hyperlinks(Please assume I mark * for the names that words have hyperlinks) at last files and folders in excel sheet using vba macro.See
project
|_tags
| |_folder2*
| |_command.txt*
|_branches
| |_folder1
| |_folder1.1*
| |_Notes.docx*
So please help something for vba noob.
I think that should do the trick. This macro will take folder path from cell
A1
and list recursively its contents and subfolder contents with hyperlinks. Update: fixed, now it's working. :)