TCL: Recursively search subdirectories to source all .tcl files

后端 未结 7 2072
独厮守ぢ
独厮守ぢ 2021-02-14 09:33

I have a main TCL proc that sources tons of other tcl procs in other folders and subsequent subdirectories. For example, in the main proc it has:

source $basepa         


        
7条回答
  •  梦毁少年i
    2021-02-14 10:30

    The answer by Joseph Bui works well except that it skips files in the initial folder.

    Change:

    set directories [list]
    To:
    set directories [list $directory]

    to fix

提交回复
热议问题